@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { 
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: #ff6b35 !important;
    height: 100%;
    border: none !important;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    font-size: var(--body-size);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0 !important;
    padding: 0 !important;
    background: #ff6b35 !important;
    min-height: 100%;
    border: none !important;
    transition: padding-top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Completely hide scrollbar arrows/indicators */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent;
}

::-webkit-scrollbar-track {
    background: transparent;
    display: none;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    display: none;
}

::-webkit-scrollbar-button {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

/* IE/Edge scrollbar */
* {
    -ms-overflow-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    padding-top: 20px;
    box-sizing: border-box;
}




:root {
    --em-banner-height: 0px;
    
    --primary-color: #f6b700;
    --secondary-color: #0d2e4c;
    --accent-color: #2e7db7;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --gray-color: #cccccc;
    --text-color: #333333;
    --white: #ffffff;
    
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    --h1-size: 3rem;
    --h2-size: 2.5rem;
    --h3-size: 1.8rem;
    --h4-size: 1.4rem;
    --body-size: 1rem;
    --small-size: 0.9rem;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    --border-radius: 5px;
    
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    --brand-color: #f6b700;
    --brand-dark: #d4a000;
}


header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    margin-bottom: 0;
    transition: top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    padding-top: 0;
}

.header-top {
    background-color: var(--secondary-color);
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.logo {
    max-width: 200px;
    height: auto;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number {
    margin-right: var(--spacing-md);
    display: flex;
    align-items: center;
}

.phone-number i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.2rem;
}

.phone-number a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.phone-number a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    background: none;
    border: none;
    padding: 5px;
}

nav {
    padding: 2px 0;
    background-color: var(--white);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--spacing-md);
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 3px 0;
    position: relative;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-menu a:hover:after,
.main-menu a.active:after {
    width: 100%;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown > a .fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--primary-color);
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}


.emergency-banner {
    background: linear-gradient(90deg, #ff6b35, #f7931e) !important;
    color: white;
    padding: 2px 0;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1001 !important;
    box-shadow: none !important;
    animation: pulse-bg 2s infinite;
    margin: 0 !important;
    border: none !important;
    display: block !important;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    will-change: transform, opacity;
}

.emergency-banner.hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}


.fixed-header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1002;
}

@keyframes pulse-bg {
    0%, 100% { background: linear-gradient(90deg, #ff6b35, #f7931e); }
    50% { background: linear-gradient(90deg, #f7931e, #ff6b35); }
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0 12px;
}


.emergency-banner .container {
    padding-top: 0;
    padding-bottom: 0;
}

.emergency-badge {
    background: white;
    color: #0d2e4c;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.emergency-text {
    font-size: 1rem;
    font-weight: 600;
}

.emergency-call {
    background: white;
    color: #0d2e4c;
    padding: 4px 10px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.emergency-call:hover {
    transform: scale(1.05);
}


.trust-bar {
    background: #f5f5f5;
    border-bottom: 1px solid #cccccc;
    padding: 10px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #333333;
}

.trust-item i {
    color: var(--primary-color);
}

.live-counter {
    position: relative;
}

.counter {
    font-weight: bold;
    color: #f6b700;
    animation: number-change 0.5s ease;
}

@keyframes number-change {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}


.hero-premium {
    position: relative;
    min-height: 25vh;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
    padding: 40px 0 20px 0;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/Living-Room-Lighting.jpg') center/cover;
    opacity: 1;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 46, 76, 0.8), rgba(26, 74, 122, 0.8));
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-top .cta-button {
    background: linear-gradient(135deg, var(--primary-color), #e6a100);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(246,183,0,0.3);
    white-space: nowrap;
}

.header-top .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(246,183,0,0.4);
    background: linear-gradient(135deg, #ffc700, #ffa500);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.35);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content {
    margin-top: 18px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-content h1 .hero-subheading {
    font-size: 0.5em;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(246, 183, 0, 0.4);
}

.hero-content h1 .highlight {
    color: var(--primary-color);
    display: block;
}

.hero-subtitle p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-feature i {
    color: #f6b700;
    font-size: 1.2rem;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-cta-primary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), #e6a100);
    color: var(--secondary-color);
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(246,183,0,0.3);
    transition: all 0.3s;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(246,183,0,0.4);
}

.cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-small {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-left: 10px;
}

.cta-big {
    font-size: 2.4rem;
    font-weight: 800;
}

.hero-cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.hero-cta-secondary:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 25px rgba(255,255,255,0.4);
    color: white;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trust-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.trust-logos img {
    height: 30px;
    opacity: 0.8;
}

.trust-text {
    color: #333333;
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 10px 30px rgba(0,0,0,0.3);
    min-height: 320px;
    max-width: 450px;
    margin: 0 auto;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), transparent, var(--primary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(246,183,0,0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 320px;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.hero-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: stretch;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 18px 16px;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2), 0 4px 12px rgba(246,183,0,0.2);
    border-color: rgba(255,255,255,0.5);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card .stat-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(246,183,0,0.3);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

.stat-card .stat-number i {
    color: var(--primary-color);
    margin: 0 3px;
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(246,183,0,0.3);
    filter: drop-shadow(0 2px 4px rgba(246,183,0,0.4));
    display: inline-block;
}

.stat-card .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.3;
    margin-top: auto;
}


.problem-solution {
    padding: var(--spacing-xl) 0; 
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 20%, var(--primary-color) 80%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(246, 183, 0, 0.5);
}

.problem-solution:hover::before {
    opacity: 1;
}

.problem-solution .section-header {
    text-align: center;
    margin-bottom: 28px; 
}

.problem-solution h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.problem-solution h2 .danger {
    color: #dc3545;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.problem-card.urgent {
    border-top: 4px solid var(--primary-color); 
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e6a100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    color: white;
    font-size: 1.8rem;
}

.problem-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.problem-card p {
    color: #333333;
    margin-bottom: 15px;
}

.solution {
    color: #28a745;
    font-weight: bold;
    padding-top: 15px;
    border-top: 1px solid #cccccc;
}

.cta-box {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 40px;
    border-radius: 0;
    text-align: center;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #0d2e4c;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.cta-button-large:hover {
    transform: scale(1.05);
}


.social-proof {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--secondary-color), #1a4a6e);
    position: relative;
    transition: all 0.3s ease;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 20%, var(--primary-color) 80%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(246, 183, 0, 0.5);
}

.social-proof:hover::before {
    opacity: 1;
}

.social-proof .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.social-proof h2 {
    font-size: 2.5rem;
    color: var(--primary-color) !important;
    margin-bottom: 20px;
}

.highlight-number {
    color: var(--primary-color);
    font-weight: 800;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stars {
    color: #f6b700;
    font-size: 1.5rem;
}

.rating-text {
    color: var(--primary-color) !important;
    font-size: 1.1rem;
    font-weight: 600;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.hero-reviews {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s;
}

.review-card.featured {
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    border: 2px solid var(--primary-color);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    margin: 0 0 5px;
    color: var(--secondary-color);
}

.review-location {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.review-stars {
    color: #f6b700;
}

.verified-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: bold;
}

.review-text {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-date {
    color: #999999;
    font-size: 0.85rem;
}

.review-platforms {
    text-align: center;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 15px;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #0d2e4c;
    transition: transform 0.3s;
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.platform-link i {
    font-size: 1.5rem;
}

.platform-rating {
    font-weight: bold;
    color: var(--primary-color);
}


.services-premium {
    padding: var(--spacing-xl) 0; 
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    position: relative;
    transition: all 0.3s ease;
}

.services-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 20%, var(--primary-color) 80%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(246, 183, 0, 0.5);
}

.services-premium:hover::before {
    opacity: 1;
}

.services-premium .section-header {
    text-align: center;
    margin-bottom: 20px; 
}

.services-premium h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    background: #f6b700;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.services-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; 
    gap: 12px;
    margin-bottom: 32px;
    margin-left: 10px;
}

.tab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    background: white;
    border: 2px solid var(--gray-color);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    position: relative;
    overflow: hidden; 
    min-width: 160px; 
    text-align: center;
}

.tab-button.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.tab-button:hover { transform: translateY(-2px); }
.tab-button:focus,
.tab-button:active,
.tab-button:focus-visible {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    transform: none; 
    border-bottom-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.showcase-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.showcase-content h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: #f6b700;
}

.service-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.service-stats .stat {
    text-align: center;
    flex: 1;
}

.service-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.service-stats .stat-label {
    font-size: 0.9rem;
    color: #333333;
}

.service-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #e6a100);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(246,183,0,0.3);
}


.limited-offer {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--secondary-color), #1a4a6e);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.limited-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246,183,0,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.limited-offer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 20%, var(--primary-color) 80%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(246, 183, 0, 0.5);
    z-index: 1;
}

.limited-offer:hover::after {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-wrapper {
    position: relative;
    z-index: 1;
}

.offer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.offer-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.offer-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.offer-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.offer-feature i {
    color: #f6b700;
    font-size: 1.2rem;
}

.countdown-timer {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.timer-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.timer-unit {
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.timer-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.offer-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color), #e6a100);
    color: var(--secondary-color);
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(246,183,0,0.3);
    transition: all 0.3s;
}

.offer-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(246,183,0,0.4);
}

.spots-remaining {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 15px;
    animation: blink 1.5s infinite;
}


.why-choose {
    padding: var(--spacing-xl) 0;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 20%, var(--primary-color) 80%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(246, 183, 0, 0.5);
}

.why-choose:hover::before {
    opacity: 1;
}

.why-choose .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.comparison-card {
    padding: 40px;
    border-radius: 15px;
}

.comparison-card.us {
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    border: 2px solid var(--primary-color);
}

.comparison-card.others {
    background: #ffffff;
    border: 2px solid #cccccc;
}

.comparison-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-card.us li i {
    color: #28a745;
}

.comparison-card.others li i {
    color: #dc3545;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #e6a100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon i {
    color: white;
    font-size: 2.5rem;
}

.guarantee-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.guarantee-content p {
    color: #333333;
    line-height: 1.6;
}


.pulse {
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}


@media (max-width: 991px) {
    header {
        margin-top: 72px;
        top: 72px;
    }
    body {
        padding-top: 72px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .service-showcase {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        text-align: center;
    }
    
    .trust-items {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    header {
        top: 60px;
    }
    body {
        padding-top: 60px;
    }
    .emergency-badge {
        display: none;
    }
    
    
    
    
    .container {
        max-width: 1600px;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    
    .header-top {
        padding: 5px 0;
    }
    
    .header-top .container {
        padding-top: 0;
    }
    
    
    .logo {
        max-width: 150px;
    }
    
    
    nav {
        padding: 0;
    }
    
    nav .container {
        padding-top: 0;
        padding-bottom: 5px;
    }
    
    
    nav .container {
        justify-content: center;
    }
    
    .main-menu {
        justify-content: center;
        width: 100%;
    }
    
    
    .main-menu a {
        font-size: 1.2rem !important;
        padding: 8px 15px !important;
    }
    
    
    .emergency-banner {
        padding: 6px 0 !important;
    }
    
    .emergency-content {
        padding: 4px 20px !important;
    }
    
    .emergency-text {
        font-size: 1.15rem !important;
    }
    
    .emergency-call {
        font-size: 1rem !important;
        padding: 6px 16px !important;
    }
    
    
    .header-top .phone-number a {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
    }
    
    .header-top .phone-number i {
        font-size: 1.3rem !important;
    }
    
    .header-top .cta-button {
        padding: 12px 32px !important;
        font-size: 1.05rem !important;
        border-radius: 35px !important;
        box-shadow: 0 6px 18px rgba(246,183,0,0.35) !important;
    }
    
    .hero-premium {
        min-height: 50vh;
        padding: 70px 0 40px;
    }
    
    
    .hero-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 60px;
        align-items: center;
        text-align: left;
    }
    
    
    .hero-content {
        text-align: left;
    }
    
    
    .hero-visual {
        display: block !important;
    }
    
    
    .hero-features {
        justify-content: flex-start !important;
        max-width: 100% !important;
    }
    
    
    .hero-cta-group {
        justify-content: flex-start !important;
    }
    
    
    .hero-visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 450px;
    }
    
    .hero-image {
        min-height: 350px;
    }
    
    .hero-stats {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: stretch;
    }
    
    .stat-card {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 18px 16px;
        border-radius: 16px;
        text-align: center;
        flex: 1;
        min-width: 0;
        border: 1px solid rgba(255,255,255,0.3);
        box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-card:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.2), 0 4px 12px rgba(246,183,0,0.2);
        border-color: rgba(255,255,255,0.5);
    }
    
    .stat-card .stat-number {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--primary-color);
        text-shadow: 0 2px 8px rgba(246,183,0,0.3);
        margin-bottom: 8px;
        letter-spacing: -0.5px;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .stat-card .stat-number i {
        color: var(--primary-color);
        margin: 0 3px;
        font-size: 1.5rem;
        text-shadow: 0 2px 8px rgba(246,183,0,0.3);
        filter: drop-shadow(0 2px 4px rgba(246,183,0,0.4));
        display: inline-block;
    }
    
    .stat-card .stat-label {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.95);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        line-height: 1.3;
        margin-top: auto;
    }
    
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(13, 46, 76, 0.8), rgba(26, 74, 122, 0.8));
    }
    
    
    .hero-background {
        opacity: 1;
    }
    
    
    .hero-content h1 {
        font-size: 4.5rem;
        line-height: 1.1;
        margin-bottom: 25px;
    }
    
    .hero-subtitle p {
        font-size: 1.5rem;
        max-width: 100%;
        margin: 0 0 30px 0;
    }
    
    
    .hero-features {
        justify-content: center;
        max-width: 700px;
        margin: 0 auto 30px;
    }
    
    
    .hero-cta-group {
        justify-content: center;
    }
    
    
    .areas-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
        max-width: 1400px;
        margin: 40px auto 0 !important;
    }
    
    .area-card {
        padding: 30px !important;
        min-height: 200px;
    }
    
    .area-card h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .area-card ul li {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .map-section > .container > p {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .map-container {
        max-width: 1200px;
        margin: 40px auto;
    }
    
    .coverage-note {
        max-width: 1000px;
        margin: 50px auto 0;
        padding: 25px 40px;
    }
    
    
    .service-areas-hero {
        padding: 80px 0 !important;
    }
    
    .service-areas-hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .service-areas-hero p {
        font-size: 1.3rem;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    
    .hero-premium {
        min-height: 50vh;
        padding: 30px 0;
        background: linear-gradient(135deg, rgba(13, 46, 76, 0.4), rgba(13, 46, 76, 0.6));
    }
    .hero-background {
        opacity: .8; 
    }
    .hero-overlay {
        display: block;
        background: linear-gradient(135deg, rgba(13, 46, 76, 0.8), rgba(26, 74, 122, 0.8)); 
    }
    header {
        position: sticky;
        top: 0;
        z-index: 1000; 
        margin-top: 0;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-button {
        padding: 12px 18px;
        font-size: 1rem;
    }
    
    .tab-buttons {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }
    
    .service-cta {
        width: 100%;
        text-align: center;
    }
    
    .timer-display {
        flex-wrap: wrap;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    
    .header-top .cta-button.pulse {
        display: none;
    }
    .header-top .container {
        display: grid;
        grid-template-columns: auto 1fr auto; 
        align-items: center;
        gap: 12px;
        padding-top: 0 !important;
    }
    .header-top .logo {
        flex: 0 0 auto;
    }
    .header-top .logo img {
        max-height: 64px;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
    }
    .header-top .contact-info {
        margin-left: auto;
        display: flex;
        align-items: center;
    }
    
    .header-top { position: relative; }
    .header-top .mobile-menu-toggle {
        position: static;
        justify-self: center; 
        transform: none;
        z-index: 1002;
        color: var(--white);
        font-size: 1.4rem;
    }
    .header-top .contact-info { margin-left: 0; justify-self: end; }
    .header-top .phone-number {
        display: flex;
        align-items: center;
    }
    .header-top .phone-number i {
        display: none;
    }
    .header-top .phone-number a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), #e6a100); 
        color: var(--secondary-color);
        padding: 10px 14px;
        border-radius: 24px;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.95rem;
        box-shadow: 0 6px 16px rgba(246,183,0,0.3);
        min-width: 140px;
    }
}

@media (max-width: 576px) {
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
        margin-top: 0;
    }
    
    .emergency-banner {
        position: relative;
        top: auto;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .emergency-text {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    
    .emergency-badge {
        background: transparent;
        color: white;
        font-size: 1.3rem;
        padding: 0;
        text-shadow: 0 1px 2px rgba(0,0,0,0.35);
        animation: blink 1.5s infinite;
    }
    
    .hero-cta-group a {
        width: 100%;
        justify-content: center;
    }
    
    nav { background: transparent; padding: 0; }
    nav .container { justify-content: center; padding: 0; }
    
    .header-top .container {
        display: grid;
        grid-template-columns: auto 1fr auto; 
        align-items: center;
        gap: 10px;
    }
    .mobile-menu-toggle { justify-self: center; }
    .header-top .contact-info { margin-left: 0; justify-self: end; }
    .contact-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
    .phone-number { margin: 0; }
    .header-top .phone-number a {
        padding: 8px 12px;
        min-width: 120px;
        font-size: 0.9rem;
    }
    
    .trust-items {
        gap: 12px;
    }
    
    .rating-summary {
        gap: 8px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .platform-links {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .tab-button {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
    
    .offer-content h2 {
        font-size: 2rem;
    }
    
    .timer-number {
        font-size: 1.8rem;
    }
}


@media (max-width: 991px) and (orientation: landscape) {
    .emergency-text {
        display: none;
    }
    .emergency-badge {
        background: transparent;
        color: white;
        font-size: 1.1rem;
        padding: 0;
        text-shadow: 0 1px 2px rgba(0,0,0,0.35);
        animation: blink 1.5s infinite;
    }
    .emergency-content {
        gap: 10px;
    }
    .emergency-call {
        padding: 6px 12px;
        font-size: 0.95rem;
    }
    header {
        top: 44px;
    }
    body {
        padding-top: 44px;
    }
}


@media (min-width: 992px) { body { padding-top: 0; } }
@media (max-width: 991px) { body { padding-top: 0; } }
@media (max-width: 768px) { body { padding-top: 0; } }
@media (max-width: 576px) { body { padding-top: 0; } }

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
    max-width: 280px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: var(--spacing-sm);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    text-decoration: none;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover:before {
    transform: translateX(5px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--small-size);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--small-size);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-phone, .floating-quote {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}

.floating-phone {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.floating-quote {
    background-color: var(--secondary-color);
    color: var(--white);
}

.floating-phone i, .floating-quote i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.floating-phone:hover, .floating-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: relative;
    }
    
    .main-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 20px;
        margin: 0;
        width: 100%;
    }
    
    .main-menu.active {
        display: flex;
    }
    
    .main-menu li {
        margin-right: 0;
        margin-bottom: var(--spacing-sm);
        width: 100%;
    }
    
    /* Disable hover effects on mobile */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: hidden;
        transform: none;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        min-width: 100% !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 10px !important;
        margin-bottom: 0 !important;
        overflow: hidden !important;
        transform: none !important;
        border-top: none !important;
        border-left: 3px solid var(--primary-color) !important;
        transition: max-height 0.3s ease, visibility 0.3s ease, padding 0.3s ease !important;
        display: block !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .dropdown-menu.active {
        visibility: visible !important;
        max-height: 500px !important;
        padding: 10px 0 !important;
        overflow: visible !important;
        height: auto !important;
    }
    
    .dropdown-menu li {
        margin-bottom: 5px;
    }
    
    .dropdown-menu a {
        padding: 8px 20px;
    }
    
    .dropdown > a .fa-chevron-down.rotate {
        transform: rotate(180deg) !important;
    }
    
    .dropdown > a {
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-phone, .floating-quote {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Missing Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666666;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
}

#header-placeholder {
    height: 0;
    transition: height 0.3s ease;
}

/* Service Areas Section */
.service-areas {
    padding: var(--spacing-xl) 0;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 20%, var(--primary-color) 80%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(246, 183, 0, 0.5);
}

.service-areas:hover::before {
    opacity: 1;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.area-column {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.area-column h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
}

.area-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-column ul li {
    padding: 8px 0;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
}

.area-column ul li:last-child {
    border-bottom: none;
}

.areas-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #e6a100);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(246,183,0,0.3);
    border: none;
    cursor: pointer;
    font-family: var(--body-font);
}

button.cta-button {
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(246,183,0,0.4);
}

.offer-cta {
    text-align: center;
}

/* Quote Section */
.quote-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f5f5f5, #ffffff);
    position: relative;
    transition: all 0.3s ease;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--primary-color) 20%, var(--primary-color) 80%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(246, 183, 0, 0.5);
}

.quote-section:hover::before {
    opacity: 1;
}

.quote-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-container > p {
    color: #666666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--body-font);
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message-container {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message-container.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message-container.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-info-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.contact-info-container h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-method i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.business-hours {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
}

.business-hours h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.business-hours p {
    color: #666666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.business-hours p strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 0;
    background: white;
}

.faq .section-title {
    margin-bottom: 50px;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-header h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
}

.accordion-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px 25px;
}

.accordion-content p {
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    color: #666666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .quote-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-container {
        position: static;
    }
    
    .form-container,
    .contact-info-container {
        margin: 0;
        padding: 25px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-header h3 {
        font-size: 1.1rem;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 15px 20px;
    }
}
