/* ========================================
   All American Overhead Garage Door
   Main Stylesheet
   ======================================== */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --primary-color: #c41e3a;
    --primary-dark: #9d1830;
    --secondary-color: #003366;
    --secondary-dark: #002244;
    --accent-color: #0066cc;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    gap: 25px;
}

.top-bar-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li > a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-call {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-call:hover {
    background-color: var(--primary-dark);
}

.btn-emergency {
    background-color: #ff6600;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
}

.btn-emergency:hover {
    background-color: #e55500;
    transform: scale(1.05);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    gap: 10px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Page Hero (Internal Pages)
   ======================================== */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    min-height: 350px;
    display: flex;
    align-items: center;
    color: var(--white);
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* ========================================
   Emergency Banner
   ======================================== */
.emergency-banner {
    background-color: #ff6600;
    color: var(--white);
    padding: 25px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.emergency-content i {
    font-size: 48px;
}

.emergency-text h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.emergency-text p {
    font-size: 16px;
    opacity: 0.95;
}

/* ========================================
   Featured Services
   ======================================== */
.featured-services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ========================================
   Services Description
   ======================================== */
.services-description {
    padding: 80px 0;
    background-color: var(--white);
}

.services-description h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.services-description p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.services-list {
    max-width: 800px;
    margin: 40px auto;
}

.services-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}

.services-list i {
    color: var(--primary-color);
}

.services-cta {
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 30px;
}

/* ========================================
   Contact Form Section
   ======================================== */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 14px;
    color: var(--text-lighter);
    margin-top: 15px;
    text-align: center;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.author {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Service Area
   ======================================== */
.service-area {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.service-area h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.service-cities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.service-cities span {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.service-cities span:hover {
    background-color: var(--primary-color);
}

/* ========================================
   Service Details Page
   ======================================== */
.service-details {
    padding: 60px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-main {
    background-color: var(--white);
}

.service-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.service-main h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-main h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 30px 0 20px;
}

.service-main h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-main p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.8;
}

.service-features i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.warning-signs i {
    color: #ff6600;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Door Options */
.door-options {
    margin: 30px 0;
}

.door-option {
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.door-option h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.door-option i {
    color: var(--primary-color);
}

/* Info Box */
.info-box,
.warning-box,
.tips-box {
    background-color: #e8f4fd;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.warning-box {
    background-color: #fff3cd;
    border-left-color: #ff6600;
}

.tips-box {
    background-color: #d4edda;
    border-left-color: #28a745;
}

.info-box h4,
.warning-box h4,
.tips-box h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box ul,
.warning-box ul,
.tips-box ul {
    list-style: none;
}

.info-box li,
.warning-box li,
.tips-box li {
    margin-bottom: 8px;
    padding-left: 10px;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.service-list a:hover,
.service-list a.active {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.cta-widget {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
}

.cta-widget h3 {
    color: var(--white);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-widget.emergency {
    background: linear-gradient(135deg, #ff6600, #e55500);
}

.hours-widget {
    background-color: var(--light-bg);
}

.hours-list {
    margin-bottom: 15px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.emergency-text {
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-note {
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.highlight-widget {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
}

.highlight-widget h3 {
    color: #856404;
}

.area-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-list i {
    color: var(--primary-color);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background-color: var(--light-bg);
}

.cta-section .btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   About Page Styles
   ======================================== */
.about-page-section {
    padding: 60px 0;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image-col img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-content-col h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.why-choose-section {
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.why-choose-list {
    margin-top: 30px;
}

.why-choose-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.why-choose-list i {
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.why-choose-list h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.why-choose-list p {
    color: var(--text-light);
    font-size: 14px;
}

.why-choose-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-area-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.service-area-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--text-light);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-col i {
    color: var(--primary-color);
}

.area-col ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.area-col ul li:last-child {
    border-bottom: none;
}

.area-col p {
    line-height: 1.8;
}

.services-overview-section {
    padding: 80px 0;
}

.services-overview-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-overview-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.service-overview-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-overview-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-overview-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-overview-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-overview-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.credentials-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.credentials-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.credential-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
}

.credential-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.credential-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.credential-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-page-section {
    padding: 60px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-container h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
}

.info-content small {
    color: var(--text-lighter);
    font-size: 13px;
}

.contact-benefits {
    list-style: none;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.contact-benefits i {
    color: var(--primary-color);
}

.emergency-card {
    background: linear-gradient(135deg, #ff6600, #e55500);
    color: var(--white);
}

.emergency-card h3 {
    color: var(--white);
}

.emergency-card p,
.emergency-card ul {
    color: rgba(255, 255, 255, 0.9);
}

.service-area-map-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.service-area-map-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.service-areas-detailed {
    margin-top: 40px;
}

.area-category {
    margin-bottom: 40px;
}

.area-category h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.city-item {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow);
}

.city-item i {
    color: var(--primary-color);
}

.service-note {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-light);
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Repair Services Specific Styles
   ======================================== */
.repair-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.repair-item {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.repair-item:hover {
    background-color: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.repair-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.repair-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.repair-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   Opener Installation Specific Styles
   ======================================== */
.opener-types {
    margin: 30px 0;
}

.opener-type-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.opener-type-card.featured {
    background: linear-gradient(135deg, #e8f4fd, #d4e8fc);
    border: 2px solid var(--accent-color);
}

.opener-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
}

.opener-type-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.opener-type-card p {
    margin-bottom: 15px;
}

.opener-type-card ul {
    list-style: none;
}

.opener-type-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.feature-box i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
}

.brands-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
}

.brands-list li {
    background-color: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brands-list i {
    color: #ffc107;
}

/* ========================================
   Maintenance Specific Styles
   ======================================== */
.maintenance-checklist {
    margin: 30px 0;
}

.checklist-section {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.checklist-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
}

.checklist-section ul {
    list-style: none;
}

.checklist-section li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
}

.checklist-section i {
    color: var(--primary-color);
    margin-top: 3px;
}

.schedule-table {
    margin: 30px 0;
}

.schedule-item {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.schedule-frequency {
    background: linear-gradient(135deg, var(--primary-color), #e63950);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 15px;
}

.schedule-tasks strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 10px;
}

.schedule-tasks ul {
    list-style: disc;
    padding-left: 20px;
}

.schedule-tasks li {
    margin-bottom: 5px;
    color: var(--text-light);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .service-content,
    .why-choose-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    /* Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 89px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 89px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: var(--transition);
        overflow-y: auto;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Grids */
    .services-grid,
    .testimonials-grid,
    .benefits-grid,
    .values-grid,
    .services-overview-grid,
    .credentials-grid,
    .faq-grid,
    .repair-services,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-list ul {
        grid-template-columns: 1fr;
    }
    
    /* Sections */
    .hero,
    .page-hero {
        min-height: 400px;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Service Area */
    .service-cities {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .top-bar,
    .header,
    .mobile-menu-toggle,
    .emergency-banner,
    .cta-section,
    .footer {
        display: none;
    }
}
