/* Center service-layout-right on mobile for consistent alignment */
@media (max-width: 991px) {
    .service-item.service-layout-right {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .service-item.service-layout-right .service-text-content,
    .service-item.service-layout-right .service-visual-content {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }
}
/* Hide service features bullet points on mobile, show on desktop */
.service-features-desktop {
    display: list-item;
}
@media (max-width: 991px) {
    .service-features-desktop {
        display: none !important;
    }
}
/* Remove transitions for before/after slider for perfect sync */
.before-after-container .after-image {
    transition: none !important;
}
.before-after-container .comparison-slider {
    transition: none !important;
}
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Screen Blur Overlay - iOS Status Bar Area Only */
.screen-top-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(180deg, 
        rgba(26, 35, 50, 0.9) 0%, 
        rgba(26, 35, 50, 0.6) 50%,
        transparent 100%);
    backdrop-filter: blur(15px);
    z-index: 1003;
    pointer-events: none;
}

/* Top Bar Section */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 35, 50, 0.85);
    z-index: 1001;
    padding: 0.6rem 0;
    backdrop-filter: blur(15px);
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    background: transparent;
    text-shadow: 0 0 12px rgba(233, 196, 106, 0.7);
    filter: drop-shadow(0 0 10px rgba(233, 196, 106, 0.5));
    animation: phoneGlowTop 4s infinite;
}

@keyframes phoneGlowTop {
    0%, 10% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }
    30%, 60% {
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 0 0 35px rgba(255, 255, 255, 0.7);
        transform: scale(1.05);
    }
    90%, 100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }
}

.top-bar-phone:hover {
    color: #E9C46A;
    transform: scale(1.15) translateY(-2px);
    text-shadow: 0 0 35px rgba(233, 196, 106, 1);
    filter: drop-shadow(0 0 30px rgba(233, 196, 106, 1));
    animation: phoneShakeTopHover 0.8s infinite;
}

@keyframes phoneShakeTopHover {
    0% { 
        transform: scale(1.15) translateY(-2px);
        text-shadow: 0 0 35px rgba(233, 196, 106, 1);
        filter: drop-shadow(0 0 30px rgba(233, 196, 106, 1));
    }
    50% { 
        transform: scale(1.15) translateY(-2px);
        text-shadow: 0 0 40px rgba(233, 196, 106, 1);
        filter: drop-shadow(0 0 35px rgba(233, 196, 106, 1));
    }
    100% { 
        transform: scale(1.15) translateY(-2px);
        text-shadow: 0 0 35px rgba(233, 196, 106, 1);
        filter: drop-shadow(0 0 30px rgba(233, 196, 106, 1));
    }
}

.top-bar-phone i {
    color: #ffffff;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(233, 196, 106, 0.9);
    animation: phoneRingTop 12s infinite;
    transform-origin: center bottom;
}

@keyframes phoneRingTop {
    0% { 
        transform: rotate(0deg) scale(1);
    }
    8.33% { 
        transform: rotate(0deg) scale(1.1);
    }
    10.83% { 
        transform: rotate(0deg) scale(1.1);
    }
    16.67% { 
        transform: rotate(-15deg) scale(1.1);
    }
    18.33% { 
        transform: rotate(15deg) scale(1.1);
    }
    20% { 
        transform: rotate(-15deg) scale(1.1);
    }
    21.67% { 
        transform: rotate(15deg) scale(1.1);
    }
    28.33% { 
        transform: rotate(0deg) scale(1.1);
    }
    36.67% { 
        transform: rotate(0deg) scale(1);
    }
    100% { 
        transform: rotate(0deg) scale(1);
    }
}

.top-bar-phone:hover i {
    animation: phoneRingTopHover 0.3s infinite;
    transform-origin: center bottom;
}

@keyframes phoneRingTopHover {
    0% { 
        transform: rotate(0deg) scale(1.2);
        text-shadow: 0 0 10px rgba(233, 196, 106, 0.9);
    }
    50% { 
        transform: rotate(0deg) scale(1.25);
        text-shadow: 0 0 15px rgba(233, 196, 106, 1);
    }
    100% { 
        transform: rotate(0deg) scale(1.2);
        text-shadow: 0 0 10px rgba(233, 196, 106, 0.9);
    }
}

.top-bar-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    background: rgba(233, 196, 106, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(233, 196, 106, 0.3);
    backdrop-filter: blur(5px);
}

.top-bar-message strong {
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    }
}

/* Separator Line */
.header-separator {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E9C46A 20%, #F4A261 50%, #E9C46A 80%, transparent 100%);
    z-index: 1002;
}

/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(26, 35, 50, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 5px solid #F4A261;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(26, 35, 50, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    height: 100%;
    min-height: 50px;
    overflow: visible;
}

/* Logo Section */
.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    position: relative;
    z-index: 1010;
    overflow: visible;
    margin: -10px 0;
}

.logo-img {
    height: 75px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(233, 196, 106, 0.3));
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1020;
}

.logo-img:hover {
    filter: brightness(1.2) drop-shadow(0 4px 8px rgba(233, 196, 106, 0.5));
    transform: scale(1.05);
}

/* Keep the old text styles as fallback - you can remove this section once logo is implemented */
.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #E9C46A;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    font-family: 'Josefin Sans', sans-serif;
    background: linear-gradient(135deg, #E9C46A 0%, #F4A261 50%, #E9C46A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 8px rgba(233, 196, 106, 0.3);
    filter: drop-shadow(0 2px 4px rgba(233, 196, 106, 0.2));
}

.nav-logo h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E9C46A 20%, #F4A261 50%, #E9C46A 80%, transparent 100%);
    border-radius: 1px;
    opacity: 0.8;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem; /* Reduced gap for closer buttons */
    align-items: center;
    height: 100%;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: #E9C46A;
    background: none; /* Remove background effect for desktop */
}

.nav-link.active {
    color: #E9C46A;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown .nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(233, 196, 106, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    color: #E9C46A;
    background: rgba(233, 196, 106, 0.1);
    border-left-color: #E9C46A;
}

.dropdown-link.active {
    color: #E9C46A;
    border-left-color: #E9C46A;
}

/* Page Content Styles */
.page-content {
    padding-top: 150px;
    min-height: 100vh;
    background: #1A2332;
    color: #ffffff;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #E9C46A;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #E9C46A 0%, #F4A261 50%, #E9C46A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.content-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(26, 35, 50, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(233, 196, 106, 0.2);
}

.content-placeholder p {
    font-size: 1.5rem;
    color: #888;
    font-style: italic;
}

/* Home Hero Section */
.home-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 0 60px;
}

.home-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/home-hero-background.webp') center center/cover no-repeat,
                linear-gradient(135deg, #1A2332 0%, #2D3748 50%, #1A2332 100%);
    background-size: cover, 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Fallback for jpg if webp not available */
.home-hero-background {
    background: url('images/home-hero-background.jpg') center center/cover no-repeat,
                linear-gradient(135deg, #1A2332 0%, #2D3748 50%, #1A2332 100%);
    background-size: cover, 400% 400%;
}

/* Use webp if browser supports it */
.webp .home-hero-background {
    background: url('images/home-hero-background.jpg') center center/cover no-repeat,
                linear-gradient(135deg, #1A2332 0%, #2D3748 50%, #1A2332 100%);
    background-size: cover, 400% 400%;
}

/* Mobile-specific backgrounds for home hero */
@media (max-width: 768px) {
    .webp .home-hero-background {
        background: url('images/home-hero-background.webp') center center/cover no-repeat,
                    linear-gradient(135deg, #1A2332 0%, #2D3748 50%, #1A2332 100%);
        background-size: cover, 400% 400%;
    }
    .home-hero-background {
        background: url('images/home-hero-background.jpg') center center/cover no-repeat,
                    linear-gradient(135deg, #1A2332 0%, #2D3748 50%, #1A2332 100%);
        background-size: cover, 400% 400%;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.home-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.home-hero-box {
    background: rgba(26, 35, 50, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove the golden gradient background */
.home-hero-box::before {
    display: none;
}

@keyframes borderGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.home-trust-line {
    color: #E9C46A;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.home-hero-headline {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.home-hero-headline .highlight {
    color: #E9C46A;
    background: linear-gradient(135deg, #E9C46A 0%, #F4A261 50%, #E9C46A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.home-hero-subheadline {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero-cta {
    margin-top: 2rem;
}

/* Home hero button styling for better visibility on transparent background */
.home-hero-cta .btn-primary,
.home-hero-cta .btn-large {
    background: #E9C46A;
    color: #1A2332;
    border: 2px solid #E9C46A;
    font-weight: 700;
}

.home-hero-cta .btn-primary:hover,
.home-hero-cta .btn-large:hover {
    background: #F4A261;
    border-color: #F4A261;
    color: #1A2332;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.4);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    min-width: 200px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(233, 196, 106, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.7rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
}

.hamburger:hover {
    background: rgba(233, 196, 106, 0.1);
}

.bar {
    width: 26px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #E9C46A;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #E9C46A;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Mobile Top Screen Blur - iOS Status Bar Area Only */
    .screen-top-blur {
        height: 6px;
        background: linear-gradient(180deg, 
            rgba(26, 35, 50, 0.85) 0%, 
            rgba(26, 35, 50, 0.5) 60%,
            transparent 100%);
        backdrop-filter: blur(12px);
    }
    
    /* Mobile Top Bar */
    .top-bar {
        padding: 0.5rem 0;
    }
    
    /* Mobile Separator */
    .header-separator {
        top: 57px;
        width: 80%;
        height: 1.5px;
    }
    
    .top-bar-container {
        flex-direction: row;
        gap: 0.8rem;
        padding: 0 1rem;
        justify-content: center;
    }
    
    .top-bar-phone {
        font-size: 1.6rem;
        padding: 0.3rem 0.8rem;
        text-shadow: 0 0 15px rgba(233, 196, 106, 0.8);
        filter: drop-shadow(0 0 12px rgba(233, 196, 106, 0.6));
        animation: phoneGlowTopMobile 4s infinite;
    }
    
    @keyframes phoneGlowTopMobile {
        0%, 10% {
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
            transform: scale(1);
        }
        30%, 60% {
            text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 0 0 35px rgba(255, 255, 255, 0.7);
            transform: scale(1.05);
        }
        90%, 100% {
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
            transform: scale(1);
        }
    }
    
    .top-bar-phone:hover {
        text-shadow: 0 0 30px rgba(233, 196, 106, 1);
        filter: drop-shadow(0 0 25px rgba(233, 196, 106, 0.9));
        animation: phoneShakeTopHoverMobile 0.4s infinite;
    }
    
    @keyframes phoneShakeTopHoverMobile {
        0% { 
            transform: scale(1.15);
            text-shadow: 0 0 30px rgba(233, 196, 106, 1);
            filter: drop-shadow(0 0 25px rgba(233, 196, 106, 0.9));
        }
        50% { 
            transform: scale(1.15);
            text-shadow: 0 0 35px rgba(233, 196, 106, 1);
            filter: drop-shadow(0 0 30px rgba(233, 196, 106, 1));
        }
        100% { 
            transform: scale(1.15);
            text-shadow: 0 0 30px rgba(233, 196, 106, 1);
            filter: drop-shadow(0 0 25px rgba(233, 196, 106, 0.9));
        }
    }
    
    .top-bar-phone i {
        font-size: 1.6rem;
    }
    
    .top-bar-message {
        display: none;
    }
    
    /* Adjust navbar position for mobile */
    .navbar {
        top: 50px;
        border-bottom: 5px solid #F4A261;
        padding: 0.3rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
        align-items: center;
        min-height: 40px;
    }
    
    .nav-logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .hamburger {
        display: flex;
        order: 2;
        flex: 0 0 auto;
        height: 44px;
        width: 44px;
        gap: 5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 58px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 58px);
        background: rgba(26, 35, 50, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(233, 196, 106, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        width: 90%;
        max-width: 400px;
        text-align: center;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown .nav-link {
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(20, 28, 40, 0.9);
        border: 1px solid rgba(233, 196, 106, 0.3);
        border-radius: 8px;
        margin-top: 0.5rem;
        margin-bottom: 1rem;
        width: 90%;
        max-width: 400px;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
        display: none;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        display: block;
    }
    
    .dropdown-link {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        text-align: center;
        border-left: none;
        border-bottom: 1px solid rgba(233, 196, 106, 0.1);
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-link:hover {
        background: rgba(233, 196, 106, 0.15);
        border-left: none;
    }
    
    /* Mobile Page Content */
    .page-content {
        padding-top: 120px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .content-placeholder {
        margin: 0 1rem;
        padding: 3rem 1.5rem;
    }
    
    .content-placeholder p {
        font-size: 1.2rem;
    }
    
    /* Mobile Home Hero */
    .home-hero {
        padding: 120px 0 40px;
        min-height: 100vh;
    }
    
    .home-hero-box {
        margin: 0 1rem;
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
    }
    
    .home-hero-box::before {
        border-radius: 17px;
    }
    
    .home-trust-line {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .home-hero-headline {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .home-hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .btn-large {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
        min-width: 180px;
    }
    
    .nav-logo h2 {
        font-size: 1.6rem;
        letter-spacing: 1.5px;
    }
    
    .nav-logo h2::after {
        height: 1.5px;
    }
    
    /* Mobile Logo Sizing */
    .logo-img {
        height: 50px;
        max-width: 170px;
    }
    
    .hero {
        min-height: 100vh;
        height: 100vh;
        max-height: 100vh;
        padding: 0;
        overflow: hidden;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 20px 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Fix hero CTA button breaking on small screens */
    .kitchen-hero-cta .btn-large,
    .kitchen-hero-cta .btn-primary,
    .home-hero-cta .btn-large,
    .home-hero-cta .btn-primary {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        min-width: 140px;
        white-space: nowrap;
        letter-spacing: 0.5px;
        border-radius: 10px;
    }
    /* Allow text to shrink a bit more if needed */
    .kitchen-hero-cta .btn-large span,
    .kitchen-hero-cta .btn-primary span,
    .home-hero-cta .btn-large span,
    .home-hero-cta .btn-primary span {
        font-size: 0.98em;
    }
    .top-bar-container {
        gap: 0.6rem;
    }
    
    .top-bar-phone {
        font-size: 1.5rem;
    }
    
    
    .top-bar-phone i {
        border-radius: 10px;
        font-size: 1.5rem;
    }
    
    .top-bar-message {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
        letter-spacing: 1.2px;
    }
    
    .nav-logo h2::after {
        height: 1.5px;
    }
    
    /* Small Mobile Logo Sizing */
    .logo-img {
        height: 47px;
        max-width: 155px;
    }
    
    .nav-phone {
        font-size: 1.1rem;
        padding: 0.2rem 0.6rem;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media (max-width: 360px) {
    /* Extra small mobile: further reduce button size */
    .kitchen-hero-cta .btn-large,
    .kitchen-hero-cta .btn-primary,
    .home-hero-cta .btn-large,
    .home-hero-cta .btn-primary {
        font-size: 0.92rem;
        padding: 0.6rem 0.7rem;
        min-width: 110px;
        letter-spacing: 0.2px;
    }
    .top-bar-phone {
        font-size: 1.5rem;
    }
    
    .top-bar-phone i {
        font-size: 1.4rem;
    }
    
    .top-bar-message {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .nav-logo h2::after {
        height: 1px;
    }
    
    /* Extra Small Mobile Logo Sizing */
    .logo-img {
        height: 43px;
        max-width: 135px;
    }
    
    .nav-phone {
        font-size: 1rem;
        padding: 0.2rem 0.5rem;
        white-space: nowrap;
        overflow: hidden;
    }
    
    .nav-phone span {
        font-size: 0.95rem;
    }
}

/* Body padding to account for fixed navbar and top bar */
body {
    padding-top: 0;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section - Fresh Complete CSS */
.hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    top: 0;
    left: 0;
}

.hero-slides, .hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Desktop Images - Landscape orientation */
.hero-slide:nth-child(1) {
    background-image: url('images/hero-background.webp');
}

.hero-slide:nth-child(2) {
    background-image: url('images/hero-background1.webp');
}

.hero-slide:nth-child(3) {
    background-image: url('images/hero-background2.webp');
}

.hero-slide:nth-child(4) {
    background-image: url('images/hero-background3.webp');
}

/* Mobile Images - Portrait orientation for better mobile viewing */
@media (max-width: 768px) {
    .hero-slide:nth-child(1) {
        background-image: url('images/mobile/hero-mobile-1.webp');
        background-position: center center;
    }

    .hero-slide:nth-child(2) {
        background-image: url('images/mobile/hero-mobile-2.webp');
        background-position: center center;
    }

    .hero-slide:nth-child(3) {
        background-image: url('images/mobile/hero-mobile-3.webp');
        background-position: center center;
    }

    .hero-slide:nth-child(4) {
        background-image: url('images/mobile/hero-mobile-4.webp');  
        background-position: center center;
    }
}


/* Hero Blue Overlay Box */
.hero::before {
    content: '';
    position: absolute;
    top: 56.5%;
    left: 24.5%;
    transform: translate(-50%, -50%);
    width: 35%;
    max-width: 490px;
    height: 65%;
    background: linear-gradient(135deg, 
        rgba(26, 35, 50, 0.85) 0%, 
        rgba(26, 35, 50, 0.75) 10%,
        rgba(26, 35, 50, 0.65) 20%,
        rgba(26, 35, 50, 0.55) 35%, 
        rgba(26, 35, 50, 0.60) 50%,
        rgba(26, 35, 50, 0.65) 65%,
        rgba(26, 35, 50, 0.75) 80%,
        rgba(26, 35, 50, 0.85) 100%);
    border-radius: 20px;
    backdrop-filter: blur(0.5px);
    z-index: 1;
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 6.3rem 1rem 1.5rem 2rem;
    margin-left: -2rem;
    margin-right: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    animation: fadeInUp 1.2s ease;
}

/* Hero Title */
.hero-title {
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #a8dadc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease 0.6s both;
}

/* Special color styling for "Vision" and "Reality" */
.special-word {
    background: radial-gradient(circle, #E63946 0%, #C72C48 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 700 !important;
    display: inline-block !important;
    line-height: 1.1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    position: relative;
}

/* Sharp golden underline for Vision and Reality */
.special-word::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -5%;
    width: 110%;
    height: 3px;
    background: linear-gradient(90deg, #E9C46A 0%, #F4A261 100%);
    clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 100%, 0% 100%);
    border-radius: 0;
    z-index: 10;
}

/* Highlight styling for "Modern" and "Affordable" */
.highlight-word {
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
}

/* Hero Golden Underline - DISABLED */
.hero-title-underline {
    display: none;
}

/* Hero Badge (Hidden by default) */
.hero-badge {
    display: none;
}

/* Hero Upgrade Text */
.hero-upgrade-text {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    opacity: 0.95;
    animation: slideInUp 1s ease 0.7s both;
}

/* Hero Phone Form */
.hero-phone-form {
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease 0.9s both;
}

.phone-input-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.phone-input-container:focus-within {
    box-shadow: 0 6px 20px rgba(233, 196, 106, 0.4);
    transform: translateY(-2px);
}

.phone-icon {
    color: #E9C46A;
    font-size: 1.1rem;
    margin: 0 0.8rem;
    flex-shrink: 0;
}

.phone-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 0.8rem 0.5rem;
    background: transparent;
    color: #2E2E2E;
    font-family: 'Josefin Sans', sans-serif;
}

.phone-input::placeholder {
    color: #666;
    opacity: 0.8;
}

.phone-submit-btn {
    background: #E9C46A;
    border: none;
    border-radius: 8px;
    padding: 0.8rem;
    color: #2E2E2E;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.phone-submit-btn:hover {
    background: #d4ad4a;
    transform: scale(1.05);
}

.phone-submit-btn i {
    font-size: 0.9rem;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

/* Hero Contact Form */
.hero-contact-form {
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease 0.9s both;
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #2E2E2E;
    font-size: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-input::placeholder {
    color: #666;
    opacity: 0.8;
    font-weight: 400;
}

.form-input:focus {
    border-color: #E9C46A;
    box-shadow: 0 6px 20px rgba(233, 196, 106, 0.4);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.form-input:hover {
    border-color: rgba(233, 196, 106, 0.5);
    box-shadow: 0 5px 18px rgba(233, 196, 106, 0.2);
}

/* Hero Subtitle - Keep for fallback but hide by default */
.hero-subtitle {
    display: none;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    max-width: 480px;
    line-height: 1.6;
    font-weight: 300;
    color: #ffffff;
    animation: slideInUp 1s ease 0.9s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease 1.2s both;
    width: 100%;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
    flex: 0 0 auto;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-buttons .btn-primary {
    background: #E9C46A;
    color: #2E2E2E;
    border-color: #E9C46A;
}

.hero-buttons .btn-primary:hover {
    background: #d4ad4a;
    border-color: #d4ad4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: #E9C46A;
    border-color: #E9C46A;
}

.hero-buttons .btn-secondary:hover {
    background: #E9C46A;
    color: #2E2E2E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.4);
}

/* Hero Social Media */
.hero-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: slideInUp 1s ease 1.4s both;
}

.hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-social i {
    font-size: 1.2rem;
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
    transform: translateY(-50%);
}

.hero-nav-btn {
    background: rgba(26, 35, 50, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    pointer-events: auto;
    font-size: 1.2rem;
    outline: none;
}

.hero-nav-btn:hover {
    background: #E9C46A;
    color: #2E2E2E;
    border-color: #E9C46A;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(233, 196, 106, 0.4);
}

.hero-nav-btn:active {
    background: #E9C46A;
    color: #2E2E2E;
    border-color: #E9C46A;
    transform: scale(1.05);
}

/* Hero Dots Navigation */
.hero-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #E9C46A;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: #E9C46A;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero-scroll a {
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-scroll a:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Hero - Hide arrows, show dots, center social media, remove subtitle, extend golden line */
@media (max-width: 768px) {
    /* Show hero dots on mobile for navigation - positioned above scroll arrow */
    .hero-dots {
        display: flex !important;
        bottom: 21  0px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.6);
    }
    
    .hero-dot.active {
        background: #E9C46A;
        transform: scale(1.3);
    }
    
    /* Hide navigation arrows on mobile */
    .hero-navigation {
        display: none !important;
    }
    
    /* Make blue box much bigger and centered for mobile */
    .hero::before {
        width: 82% !important;
        height: 62% !important;
        top: 48%;
        left: 50%;
        max-width: 365px !important;
        border-radius: 20px;
    }
    
    /* Center all content within the blue box */
    .hero-content {
        position: absolute;
        top: 48%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 345px;
        padding: 2.8rem 2.2rem;
        text-align: center;
        width: 82%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        max-height: 90%;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2.1rem;
        margin-bottom: 1.6rem;
        text-align: center;
        line-height: 1.2;
        width: 100%;
        display: block;
    }
    
    /* Mobile upgrade text spacing */
    .hero-upgrade-text {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    /* Mobile form spacing */
    .hero-contact-form {
        margin-bottom: 1rem;
    }
    
    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Hide desktop golden line on mobile */
    .hero-title-underline {
        display: none;
    }
    
    /* Disable mobile golden line */
    .hero-title::after {
        display: none;
    }
    
    /* Show subtitle on mobile */
    .hero-subtitle {
        display: none !important;
    }
    
    /* Mobile Contact Form */
    .hero-contact-form {
        margin-bottom: 1.2rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .form-input {
        font-size: 0.9rem;
        padding: 0.9rem 1rem;
    }
    
    /* Mobile Phone Form Styles */
    .hero-phone-form {
        margin-bottom: 1.2rem;
        width: 100%;
    }
    
    .phone-input-container {
        max-width: 280px;
        margin: 0 auto 0.6rem auto;
        padding: 0.4rem;
    }
    
    .phone-input {
        font-size: 0.9rem;
        padding: 0.7rem 0.4rem;
    }
    
    .phone-submit-btn {
        width: 36px;
        height: 36px;
        padding: 0.6rem;
    }
    
    .phone-submit-btn i {
        font-size: 0.8rem;
    }
    
    .form-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons .btn {
        width: 220px;
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Center social media on mobile */
    .hero-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.2rem;
        margin-top: 1.2rem;
        width: 100%;
        position: relative;
        z-index: 5;
    }
    
    .hero-social a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        color: #ffffff;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }
    
    .hero-social a:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero::before {
        width: 78% !important;
        height: 56% !important;
        top: 46%;
        max-width: 335px !important;
    }
    
    .hero-content {
        max-width: 310px;
        width: 82%;
        top: 46%;
        padding: 2.4rem 1.8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        max-height: 88%;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 1.4rem;
        line-height: 1.2;
        width: 100%;
        display: block;
        text-align: center;
    }
    
    /* Small Mobile upgrade text spacing */
    .hero-upgrade-text {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    /* Small Mobile form spacing */
    .hero-contact-form {
        margin-bottom: 1rem;
        max-width: 280px;
    }
    
    .hero-title::after {
        display: none;
    }
    
    /* Small Mobile Phone Form */
    .phone-input-container {
        max-width: 260px;
        padding: 0.35rem;
    }
    
    .phone-input {
        font-size: 0.85rem;
        padding: 0.6rem 0.3rem;
    }
    
    .phone-submit-btn {
        width: 34px;
        height: 34px;
    }
    
    .form-subtitle {
        font-size: 0.75rem;
    }
    
    /* Small Mobile Subtitle */
    .hero-subtitle {
        display: none !important;
    }
    
    /* Small Mobile Contact Form Inputs */
    .form-input {
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
    }
    
    .hero-buttons .btn {
        width: 200px;
        padding: 0.7rem 1.6rem;
        font-size: 0.9rem;
    }
    
    .hero-social {
        gap: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .hero-social a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        color: #ffffff;
        backdrop-filter: blur(5px);
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero::before {
        width: 75% !important;
        height: 52% !important;
        top: 44%;
        max-width: 305px !important;
    }
    
    .hero-content {
        max-width: 280px;
        width: 78%;
        top: 44%;
        padding: 2.3rem 1.7rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1.6rem;
        line-height: 1.2;
        width: 100%;
        display: block;
        text-align: center;
    }
    
    .hero-title::after {
        display: none;
    }
    
    /* Extra Small Mobile Phone Form */
    .phone-input-container {
        max-width: 240px;
        padding: 0.3rem;
    }
    
    .phone-input {
        font-size: 0.8rem;
        padding: 0.5rem 0.3rem;
    }
    
    .phone-submit-btn {
        width: 32px;
        height: 32px;
    }
    
    .form-subtitle {
        font-size: 0.7rem;
    }
    
    /* Extra Small Mobile Subtitle */
    .hero-subtitle {
        display: none !important;
    }
    
    /* Extra Small Mobile Contact Form */
    .hero-contact-form {
        max-width: 250px;
    }
    
    .form-input {
        font-size: 0.8rem;
        padding: 0.7rem 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 180px;
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-social {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hero-social a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* Desktop - Keep existing layout and show dots */
@media (min-width: 769px) {
    /* Show dots on desktop */
    .hero-dots {
        display: flex !important;
        bottom: 60px;
        left: auto;
        right: 40px;
        transform: none;
    }
    
    /* Position content inside the blue box on desktop */
    .hero-content {
        position: absolute;
        top: 56.5%;
        left: 24.5%;
        transform: translate(-50%, -50%);
        max-width: 450px;
        padding: 2.5rem 2rem;
        text-align: left;
        width: 90%;
        margin: 0;
        z-index: 2;
    }
    
    /* Disable desktop golden line */
    .hero-title::after {
        display: none;
    }
    
    /* Show desktop golden line */
    .hero-title-underline {
        display: none;
    }
    
    /* Show subtitle on desktop */
    .hero-subtitle {
        display: none !important;
    }
    
    /* Desktop Contact Form */
    .hero-contact-form {
        margin-bottom: 1.5rem;
        max-width: 400px;
        margin-top: 1.2rem;
    }
    
    /* Adjust title for desktop */
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 0rem;
        line-height: 1.2;
        position: relative;
    }
    
    /* Adjust buttons for desktop */
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        width: auto;
    }
    
    /* Keep social media left-aligned on desktop */
    .hero-social {
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .hero-social a {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    /* Move scroll indicator back to center for desktop */
    .hero-scroll {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Fix for wider Windows screens - hero content overflow */
@media (min-width: 1400px) {
    .hero-content {
        max-height: 80vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 1.2vw, 1.1rem);
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        margin-bottom: 1.5rem;
    }
    
    .hero-social {
        margin-top: auto;
    }
}

@media (min-width: 1600px) {
    .hero {
        min-height: 90vh;
        max-height: 90vh;
    }
    
    .hero-content {
        max-height: 75vh;
        padding: 1.5rem 1rem;
    }
}

/* Trust Badges Section */
.trust-badges {
    background: #1A2332;
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

.trust-badges-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Moving/Scrolling Trust Badges - Default */
.trust-badges-moving {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6rem;
    white-space: nowrap;
    animation: scrollBadges 20s linear infinite;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
}

.trust-badge:hover {
    background: rgba(233, 196, 106, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 196, 106, 0.2);
}

.trust-badge .icon {
    font-size: 1.2rem;
    color: #E9C46A;
}

.trust-badge .stars {
    color: #FFD700;
    font-size: 1rem;
}

@keyframes scrollBadges {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-60%);
    }
}

/* Static Trust Badges - Alternative option */
.trust-badges-static {
    display: none; /* Hidden by default, enable if preferred */
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0 2rem;
}

/* Mobile Trust Badges */
@media (max-width: 768px) {
    .trust-badges {
        padding: 1.2rem 0;
    }
    
    .trust-badges-moving {
        gap: 4rem;
        animation: scrollBadges 16s linear infinite;
    }
    
    .trust-badge {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
        min-width: 220px;
    }
    
    .trust-badge .icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        padding: 1rem 0;
    }
    
    .trust-badges-moving {
        gap: 3rem;
        animation: scrollBadges 10s linear infinite;
    }
    
    .trust-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
        min-width: 200px;
    }
    
    .trust-badge .icon {
        font-size: 1rem;
    }
}

/* --- Before/After Comparison Slider Styles --- */
.before-after-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 260px;
    margin: 2rem auto 1.5rem auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    background: #222;
    user-select: none;
}
.before-after-image {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    transition: none;
}
.before-image {
    z-index: 1;
}
.after-image {
    z-index: 2;
    width: 100%;
    clip-path: inset(0 0 0 50%);
    transition: none;
}
.comparison-slider {
    position: absolute;
    top: 0; 
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.comparison-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #1A2332;
    border-radius: 2px;
    z-index: 1;
    pointer-events: none;
}
.comparison-handle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    border-radius: 50%;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A2332;
    font-size: 1.7rem;
    cursor: ew-resize;
    pointer-events: auto;
    transition: color 0.2s;
}
.comparison-handle i {
    color: #1A2332;
    background: none;
    font-size: 2.4rem;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(.4,1.4,.6,1);
}
.comparison-handle:active, .comparison-handle:focus {
    background: none;
    color: #1A2332;
}
.comparison-labels {
    position: absolute;
    width: 100%;
    top: 12px;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 4;
    pointer-events: none;
}
.comparison-label {
    background: rgba(29,53,87,0.85);
    color: #fff;
    font-size: 0.95rem;
    padding: 2px 12px;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
@media (max-width: 600px) {
    .service-visual-content .before-after-container {
        max-width: 100vw !important;
        width: 100% !important;
        height: 35vw !important;
        min-height: 160px !important;
        max-height: 200px !important;
        margin-left: -2rem !important;
        margin-right: -2rem !important;
    }
    .comparison-handle {
        width: 36px;
        height: 36px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.1rem;
    }
    .comparison-label {
        font-size: 0.85rem;
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .service-visual-content .before-after-container {
        max-width: 100vw !important;
        width: 100% !important;
        height: 32vw !important;
        min-height: 140px !important;
        max-height: 180px !important;
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
    }
}

/* --- Modern Services Section Styles --- */
.services {
    background: linear-gradient(135deg, #1A2332 0%, #1D3557 100%);
    padding: 4rem 0 3rem 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-subtitle {
    color: #E9C46A;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}
.section-subtitle::after {
    content: '';
    display: block;
    margin: 0.5rem auto 0 auto;
    width: 720px; /* Increased from 350px */
    height: 4px;
    border-radius: 3px;
    background: #E9C46A;
    box-shadow: 0 2px 8px rgba(233,196,106,0.18);
}
@media (max-width: 600px) {
    .section-subtitle::after {
        width: 350px;
    }
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E2E2E;
    margin-bottom: 0.7rem;
    letter-spacing: -1px;
    line-height: 1.15;
}
.section-description {
    color: #2E2E2E;
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .section-description {
        font-size: 0.95rem;
    }
}
@media (max-width: 400px) {
    .section-description {
        font-size: 0.85rem;
    }
}
@media (max-width: 360px) {
    .section-description {
        font-size: 0.78rem;
    }
}
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Services section specific styles */
.services .section-title {
    color: #ffffff;
}

.services .section-description {
    color: #cccccc;
}

.services .section-subtitle {
    color: #E9C46A;
}

/* Home page services section button styles */
.services .service-btn {
    border: 2px solid #E9C46A!important;
    color: #E9C46A;
}

.services .service-btn:hover {
    border: 2px solid #E9C46A!important;
    background: #E9C46A!important; 
}

.services .service-btn-secondary {
    background: #1D3557 !important;
    border: 2px solid #C1C8D1 !important;
    color: #C1C8D1!important;
}

.services .service-btn-secondary:hover {
    border: 2px solid #FFFFFF!important;
    background: #FFFFFF!important; 
    color: #1D3557!important;
}

.service-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(29,53,87,0.07);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: box-shadow 0.2s, transform 0.8s ease-out, opacity 0.8s ease-out;
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
}

.service-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.service-item:hover {
    box-shadow: 0 16px 48px 0 rgba(244,162,97,0.22), 0 4px 24px rgba(29,53,87,0.13);
}

.service-layout-left {
    flex-direction: row;
    margin-left: -3rem;
    margin-right: 3rem;
    transform: translateX(-100px);
}

.service-layout-right {
    flex-direction: row-reverse;
    margin-left: 3rem;
    margin-right: -3rem;
    transform: translateX(100px);
}

.service-layout-left.animate-in {
    transform: translateX(0);
}

.service-layout-right.animate-in {
    transform: translateX(0);
}

.service-layout-right .service-text-content {
    text-align: left;
}

.service-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-visual-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ensure proper spacing between text and visual content */
.service-layout-left .service-text-content {
    margin-right: 1.5rem;
}

.service-layout-left .service-visual-content {
    margin-left: 1.5rem;
}

.service-layout-right .service-text-content {
    margin-left: 1.5rem;
}

.service-layout-right .service-visual-content {
    margin-right: 1.5rem;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1D3557;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-description {
    color: #457B9D;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    color: #1D3557;
    font-size: 1rem;
    font-weight: 500;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F4A261;
    font-weight: 700;
    font-size: 1.1rem;
}
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.service-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #1D3557;
    font-size: 1rem;
    font-weight: 500;
    background: #f1f6fa;
    border-radius: 6px;
    padding: 0.25rem 0.8rem 0.25rem 0.6rem;
    box-shadow: 0 1px 4px rgba(29,53,87,0.04);
}
.service-feature i {
    color: #F4A261;
    font-size: 1.1rem;
}
.service-cta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.2rem;
    justify-content: center;
    align-items: stretch;
}
.service-btn {
    background: #1D3557;
    color: #fff;
    font-weight: 700;
    border: 2px solid #1D3557;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 2px 12px rgba(29,53,87,0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: block;
}
.service-btn:hover {
    background: #fff;
    color: #1D3557;
    border: 2px solid #1D3557;
    box-shadow: 0 4px 16px rgba(29,53,87,0.18);
}
.service-btn-secondary {
    background: rgba(29,53,87,0.85);
    color: #ffffff;
    border: 2px solid rgba(29,53,87,0.85);
    box-shadow: 0 2px 12px rgba(29,53,87,0.2);
}
.service-btn-secondary:hover {
    background: rgba(29,53,87,1);
    color: #ffffff;
    border: 2px solid rgba(29,53,87,1);
    box-shadow: 0 4px 16px rgba(29,53,87,0.3);
}
@media (max-width: 900px) {
    .service-item {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .service-item:nth-child(2) {
        flex-direction: column !important;
    }
    
    .service-layout-left,
    .service-layout-right {
        flex-direction: column !important;
    }
    
    .service-text-content {
        text-align: center;
        margin: 0 !important;
    }
    
    .service-visual-content {
        margin: 0 !important;
        overflow-x: visible !important;
        width: 100% !important;
    }
    
    .service-visual-content .before-after-container {
        max-width: 100vw !important;
        width: 100% !important;
        height: 35vw !important;
        min-height: 160px !important;
        max-height: 200px !important;
        margin-left: -2rem !important;
        margin-right: -2rem !important;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .service-features {
        align-items: center;
    }
}
/* --- Before/After Comparison Slider Styles --- */
.before-after-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 260px;
    margin: 2rem auto 1.5rem auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    background: #222;
    user-select: none;
}
.before-after-image {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    transition: none;
}
.before-image {
    z-index: 1;
}
.after-image {
    z-index: 2;
    width: 100%;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.2s cubic-bezier(.4,1.4,.6,1);
}
.comparison-slider {
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.comparison-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #1A2332;
    border-radius: 2px;
    z-index: 1;
    pointer-events: none;
}
.comparison-handle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    border-radius: 50%;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A2332;
    font-size: 1.7rem;
    cursor: ew-resize;
    pointer-events: auto;
    transition: color 0.2s;
}
.comparison-handle i {
    color: #1A2332;
    background: none;
    font-size: 2.4rem;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(.4,1.4,.6,1);
}
.comparison-handle:active, .comparison-handle:focus {
    background: none;
    color: #1A2332;
}
.comparison-labels {
    position: absolute;
    width: 100%;
    top: 12px;
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 4;
    pointer-events: none;
}
.comparison-label {
    background: rgba(29,53,87,0.85);
    color: #fff;
    font-size: 0.95rem;
    padding: 2px 12px;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
@media (max-width: 600px) {
    .before-after-container {
        max-width: 98vw;
        height: 44vw;
        min-height: 160px;
    }
    .comparison-handle {
        width: 36px;
        height: 36px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.1rem;
    }
    .comparison-label {
        font-size: 0.85rem;
        padding: 2px 8px;
    }
}

/* --- Modern Services Section Styles --- */
.services {
    background: linear-gradient(135deg, #1A2332 0%, #1D3557 100%);
    padding: 4rem 0 3rem 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-subtitle {
    color: #2E2E2E;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}
.section-subtitle::after {
    content: '';
    display: block;
    margin: 0.5rem auto 0 auto;
    width: 720px; /* Increased from 350px */
    height: 4px;
    border-radius: 3px;
    background: #E9C46A;
    box-shadow: 0 2px 8px rgba(233,196,106,0.18);
}
@media (max-width: 600px) {
    .section-subtitle::after {
        width: 350px;
    }
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2E2E2E;
    margin-bottom: 0.7rem;
    letter-spacing: -1px;
    line-height: 1.15;
}
.section-description {
    color: #2E2E2E;
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .section-description {
        font-size: 0.95rem;
    }
}
@media (max-width: 400px) {
    .section-description {
        font-size: 0.85rem;
    }
}
@media (max-width: 360px) {
    .section-description {
        font-size: 0.78rem;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}
.services .service-item {
    background: #1D3557;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(29,53,87,0.3);
    padding: 2.2rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.8s ease-out, opacity 0.8s ease-out;
    position: relative;
    color: #ffffff;
    opacity: 0;
    transform: translateY(-80px);
}

/* Home page services animation */
.services .service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for home page services */
.services .service-item:nth-child(1).animate-in {
    transition-delay: 0.2s;
}

.services .service-item:nth-child(2).animate-in {
    transition-delay: 0.4s;
}

.services .service-item:nth-child(3).animate-in {
    transition-delay: 0.6s;
}

.services .service-item:hover {
    box-shadow: 0 16px 48px 0 rgba(244,162,97,0.4), 0 4px 24px rgba(29,53,87,0.3);
}
.services .service-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #E9C46A;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-align: center;
    width: 100%;
}
.services .service-description {
    color: #cccccc;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    text-align: center;
    line-height: 1.5;
}
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.service-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #1D3557;
    font-size: 1rem;
    font-weight: 500;
    background: #f1f6fa;
    border-radius: 6px;
    padding: 0.25rem 0.8rem 0.25rem 0.6rem;
    box-shadow: 0 1px 4px rgba(29,53,87,0.04);
}
.service-feature i {
    color: #F4A261;
    font-size: 1.1rem;
}
.service-cta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.2rem;
    justify-content: center;
    align-items: stretch;
}
.service-btn {
    background: #1D3557;
    color: #fff;
    font-weight: 700;
    border: 2px solid #1D3557;
    border-radius: 8px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 2px 12px rgba(29,53,87,0.13);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    display: block;
}
.service-btn:hover {
    background: #fff;
    color: #1D3557;
    border: 2px solid #1D3557;
    box-shadow: 0 4px 16px rgba(29,53,87,0.18);
}
.service-btn-secondary {
    background: #fff;
    color: #F4A261;
    border: 2px solid #F4A261;
    box-shadow: 0 2px 12px rgba(233,196,106,0.13);
}
.service-btn-secondary:hover {
    background: #F4A261;
    color: #fff;
    border: 2px solid #F4A261;
    box-shadow: 0 4px 16px rgba(233,196,106,0.18);
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-item {
        padding: 1.5rem 1rem 2rem 1rem;
    }
}



/* --- Process Section Styles --- */
.process {
    background: rgba(26, 35, 50, 0.95);
    padding: 4rem 0 3rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements for Process Section */
.process::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #1D3557 0%, rgba(29, 53, 87, 0.3) 100%);
    border-radius: 50%;
    z-index: 0;
}

.process::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: #1D3557;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}
.process .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Additional decorative elements for process section */
.process .container::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #1D3557 50%, transparent 100%);
    opacity: 0.6;
    transform: rotate(45deg);
    z-index: 0;
}

.process .container::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: 5%;
    width: 100px;
    height: 100px;
    border: 2px solid #1D3557;
    border-radius: 10px;
    opacity: 0.3;
    transform: rotate(30deg);
    z-index: 0;
}
.process .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.process .section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #E9C46A;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}
.process .section-header h2::after {
    content: '';
    display: block;
    margin: 0.5rem auto 0 auto;
    width: 720px;
    height: 4px;
    border-radius: 3px;
    background: #F4A261;
    box-shadow: 0 2px 8px rgba(244,162,97,0.18);
}
.process .section-header p {
    color: #cccccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    margin: 0 auto;
    max-width: 700px;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #F4A261 0%, #E9C46A 100%);
    border-radius: 2px;
    z-index: 0;
}
.process-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,1.4,.6,1), transform 0.7s cubic-bezier(.4,1.4,.6,1);
}
.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.step-number {
    min-width: 64px;
    height: 64px;
    background: #1D3557;
    border: 4px solid #E9C46A;
    color: #E9C46A;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(233,196,106,0.13);
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: border-color 0.3s, color 0.3s;
}
.process-step.visible .step-number {
    border-color: #E9C46A;
    color: #E9C46A;
}
.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}
.step-content p {
    color: #457B9D;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 700px) {
    .process-timeline {
        max-width: 100%;
    }
    .process-step {
        gap: 1rem;
    }
    .step-number {
        min-width: 48px;
        height: 48px;
        font-size: 1.2rem;
        border-width: 3px;
    }
}
@media (max-width: 600px) {
    .process .section-header h2::after {
        width: 350px;
    }
}
@media (max-width: 500px) {
    .process {
        padding: 2.5rem 0 2rem 0;
    }
    .process .section-header h2 {
        font-size: 1.3rem;
    }
    .process .section-header p {
        font-size: 0.95rem;
    }
    .process-timeline::before {
        left: 16px;
        width: 3px;
        background: linear-gradient(to bottom, #E9C46A 0%, #F4A261 100%);
    }
    .step-number {
        min-width: 36px;
        height: 36px;
        font-size: 1rem;
        border-width: 2px;
    }
}



/* Prevent horizontal scrolling */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Gallery Section - Complete CSS */
.gallery {
    padding: 6rem 0;
    background: rgba(26, 35, 50, 0.95);
}

.gallery .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery .section-header h2 {
    font-size: 3rem;
    color: #E9C46A;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    position: relative;
    display: block;
    text-align: center;
}

.gallery .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 4px;
    background: #E9C46A;
    border-radius: 2px;
}

.gallery .section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
    text-align: center;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.filter-btn {
    padding: 0.9rem 1.8rem;
    border: 2px solid #8491A3;
    background: transparent;
    color: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    text-align: center;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 196, 106, 0.2), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    background: linear-gradient(135deg, #E9C46A 0%, #F4A261 100%);
    color: #1D3557;
    border-color: #E9C46A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 196, 106, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, #1D3557 0%, #2E4F72 100%);
    color: #FAFAFA;
    border-color: #1D3557;
    box-shadow: 0 5px 15px rgba(29, 53, 87, 0.3);
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, #E9C46A 0%, #F4A261 100%);
    color: #1D3557;
    border-color: #E9C46A;
}

/* Gallery Slider Container */
.gallery-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.1);
    overflow: hidden;
}

/* Gallery Slides */
.gallery-slides {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateX(100%);
}

.gallery-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.gallery-slide.prev {
    transform: translateX(-100%);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

/* Slide Info Overlay */
.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(29, 53, 87, 0.9));
    color: #FAFAFA;
    padding: 3rem 2rem 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-slider-container:hover .slide-info {
    transform: translateY(0);
}

.slide-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: #FAFAFA;
}

.slide-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
    box-shadow: none;
    backdrop-filter: none;
}

.slider-nav:hover {
    background: transparent;
    color: #E9C46A;
    transform: translateY(-50%) scale(1.1);
    box-shadow: none;
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav i {
    font-size: 1.8rem;
    color: inherit;
}

/* Remove Slider Indicators (dots) */
.slider-indicators {
    display: none;
}

/* Before/After Toggle Buttons */
.before-after-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 2rem 0 0 0;
    position: relative;
}

.toggle-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #1D3557;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.toggle-btn:first-child {
    border-radius: 12px 0 0 12px;
    border-right: 1px solid #1D3557;
}

.toggle-btn:last-child {
    border-radius: 0 12px 12px 0;
    border-left: 1px solid #1D3557;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #1D3557 0%, #2E4F72 100%);
    color: #ffffff;
    z-index: 3;
}

.toggle-btn:hover:not(.active) {
    background: linear-gradient(135deg, #E9C46A 0%, #F4A261 100%);
    color: #ffffff;
}

@media (max-width: 600px) {
  .gallery .section-header h2::after {
    width: 350px;
  }
  .gallery-filters {
    justify-content: center;
    padding: 0 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.92rem;
    min-width: 80px;
  }
}

/* Kitchen Hero Section */
.kitchen-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

.kitchen-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/kitchen-hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Mobile-specific background for kitchen hero */
@media (max-width: 768px) {
    .kitchen-hero-background {
        background: url('images/mobile/hero-mobile-1.jpg') center center/cover no-repeat,
                    linear-gradient(135deg, #1A2332 0%, #2D3748 50%, #1A2332 100%);
        background-size: cover, 400% 400%;
        animation: gradientShift 15s ease infinite;
    }
}

.kitchen-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

.kitchen-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}



.kitchen-trust-line {
    color: #E9C46A;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.kitchen-hero-headline {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.kitchen-hero-headline .highlight {
    color: #E9C46A;
    background: linear-gradient(135deg, #E9C46A 0%, #F4A261 50%, #E9C46A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.kitchen-hero-subheadline {
    font-size: 1.3rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.kitchen-hero-cta {
    margin-top: 2rem;
}

/* Kitchen hero button styling for better visibility on transparent background */
.kitchen-hero-cta .btn-primary,
.kitchen-hero-cta .btn-large {
    background: #E9C46A;
    color: #1A2332;
    border: 2px solid #E9C46A;
    font-weight: 700;
}

.kitchen-hero-cta .btn-primary:hover,
.kitchen-hero-cta .btn-large:hover {
    background: #F4A261;
    border-color: #F4A261;
}

/* Kitchen Services Section - Unique styles to avoid conflicts */
.kitchen-services {
    padding: 4rem 0;
    background: #1A2332;
    color: #ffffff;
}

.kitchen-services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.kitchen-services .section-subtitle {
    color: #E9C46A;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.kitchen-services .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.kitchen-services .section-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.kitchen-services-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.kitchen-services .service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 35, 50, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(233, 196, 106, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.kitchen-services .service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.kitchen-services .service-layout-right {
    grid-template-columns: 1fr 1fr;
}

.kitchen-services .service-layout-right .service-text-content {
    order: 2;
}

.kitchen-services .service-layout-right .service-visual-content {
    order: 1;
}

.kitchen-services .service-text-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #E9C46A;
    margin-bottom: 1.5rem;
}

.kitchen-services .service-text-content p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.kitchen-services .service-features {
    list-style: none;
    padding: 0;
}

.kitchen-services .service-features li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.kitchen-services .service-features li::before {
    content: '✓';
    color: #E9C46A;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Before/After containers for kitchen services */
.kitchen-services .before-after-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: grab;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.kitchen-services .before-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.kitchen-services .after-image {
    clip-path: inset(0 50% 0 0);
}

.kitchen-services .comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #E9C46A;
    cursor: ew-resize;
    z-index: 10;
}

.kitchen-services .comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #E9C46A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.kitchen-services .comparison-handle i {
    color: #1A2332;
    font-size: 3rem;
}

/* Make all comparison arrows bigger */
.comparison-handle i {
    font-size: 3rem !important;
}

.kitchen-services .comparison-labels {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.kitchen-services .comparison-label {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.kitchen-services .service-cta {
    margin-top: 2rem;
}

.kitchen-services .service-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #E9C46A;
    border: 2px solid #E9C46A;
    color: #1A2332;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.kitchen-services .service-btn:hover {
    background: #F4A261;
    border: 2px solid #F4A261;
    color: #1A2332;
    transform: translateY(-2px);
}

/* Mobile styles for kitchen services */
@media (max-width: 768px) {
    .kitchen-services {
        padding: 3rem 0;
    }
    
    .kitchen-services .section-title {
        font-size: 2.2rem;
    }
    
    .kitchen-services .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .kitchen-services .service-layout-right .service-text-content,
    .kitchen-services .service-layout-right .service-visual-content {
        order: initial;
    }
    
    .kitchen-services .service-text-content h3 {
        font-size: 1.8rem;
    }
    
    .kitchen-services .before-after-container {
        height: 250px;
    }
}

/* Override to ensure no background circle on comparison handle */
.comparison-handle,
.comparison-handle:hover,
.comparison-handle:active,
.comparison-handle:focus {
    background: none !important;
    border-radius: 0 !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
}

/* Kitchen Services Animation Styles */
.kitchen-services .service-item {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kitchen-services .service-item:nth-child(2) {
    transform: translateX(100px); /* Full Kitchen Renovation - from right */
}

.kitchen-services .service-item:nth-child(3) {
    transform: translateX(-100px); /* Countertops - from left */
}

.kitchen-services .service-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation delays */
.kitchen-services .service-item:nth-child(1).animate-in {
    transition-delay: 0.2s;
}

.kitchen-services .service-item:nth-child(2).animate-in {
    transition-delay: 0.4s;
}

.kitchen-services .service-item:nth-child(3).animate-in {
    transition-delay: 0.6s;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(90deg, #1A2332 0%, #1B2A3F 50%, #1A2332 100%);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(27, 35, 50, 0.95) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 35, 50, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 0 0;
    z-index: 1;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.guarantee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.guarantee-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.guarantee-title .highlight {
    color: #E9C46A;
    font-weight: 600;
}

.guarantee-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-cta {
    margin-top: 40px;
}

.guarantee-btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #E9C46A, #F4A261);
    color: #394659;
    text-decoration: none;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(233, 196, 106, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.guarantee-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(233, 196, 106, 0.4);
}

.guarantee-note {
    color: #5a6c7d;
    font-size: 14px;
    margin-top: 15px;
    font-style: italic;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: #1A2332;
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(11, 32, 60, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 53, 87, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 0 0;
    z-index: 1;
    animation: patternMove 25s linear infinite;
}

.service-areas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.service-areas-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 0 auto;
}

.service-areas-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 40px;
    line-height: 1.2;
}

.service-areas-title .highlight {
    color: #E9C46A;
    font-weight: 600;
}

.cities-grid {
    max-width: 800px;
    margin: 0 auto;
}

.cities-row {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    margin-bottom: 10px;
    text-align: center;
}

.city {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.city:hover {
    color: #E9C46A;
}

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #1A2332 0%, #2C3E50 50%, #1A2332 100%);
    position: relative;
}

.quote-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quote-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.quote-title .highlight {
    color: #E9C46A;
    font-weight: 600;
}

.quote-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E9C46A;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(233, 196, 106, 0.3);
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.recaptcha-container .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
}

@media (max-width: 480px) {
    .recaptcha-container .g-recaptcha {
        transform: scale(0.8);
    }
}

.quote-submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #E9C46A, #F4A261);
    color: #394659;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(233, 196, 106, 0.3);
    margin-top: 10px;
}

.quote-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(233, 196, 106, 0.4);
}

.quote-submit-btn i {
    margin-right: 10px;
}

.quote-disclaimer {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 20px;
}

.quote-disclaimer i {
    color: #E9C46A;
    margin-right: 8px;
}

.quote-map-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.google-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
}

.working-hours-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-header i {
    color: #E9C46A;
    font-size: 1.3rem;
}

.hours-header h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.hours-days {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.hours-time {
    color: #E9C46A;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design for Kitchen Hero and Guarantee */
@media (max-width: 768px) {
    /* Kitchen hero container mobile styles to match home hero */
    .kitchen-hero {
        padding: 120px 0 40px;
        min-height: 100vh;
    }
    
    .kitchen-hero-content {
        padding: 20px 0;
        text-align: center;
    }
    
    /* Kitchen hero mobile styles to match home hero layout */
    .kitchen-hero-box {
        margin: 0 1rem;
        padding: 2.5rem 1.5rem;
        border-radius: 15px;
    }
    
    .kitchen-hero-headline {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .kitchen-hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .kitchen-trust-line {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    /* Kitchen hero button styling to match home page */
    .kitchen-hero-cta .btn-primary,
    .kitchen-hero-cta .btn-large {
        background: #E9C46A;
        color: #1A2332;
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
        min-width: 180px;
    }
    
    .guarantee {
        padding: 60px 0;
    }
    
    .guarantee-title {
        font-size: 2rem;
    }
    
    .guarantee-box {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .service-areas {
        padding: 60px 0;
    }
    
    .service-areas-title {
        font-size: 2rem;
    }
    
    .service-areas-box {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .cities-row {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* Kitchen Gallery Section */
.kitchen-gallery {
    padding: 4rem 0;
    background: #1A2332;
    color: #ffffff;
}


.kitchen-gallery-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: #1A2332;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.kitchen-gallery-slides {
    position: relative;
    width: 100%;
    height: 450px; /* 800px / 1.77 = ~452px for 16:9 aspect ratio */
}

.kitchen-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.kitchen-gallery-slide.active {
    opacity: 1;
}

.kitchen-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.slide-info {
    padding: 1.5rem;
    background: #1D3557;
    color: #ffffff;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.kitchen-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 35, 50, 0.8);
    color: #E9C46A;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.kitchen-gallery-nav:hover {
    background: #E9C46A;
    color: #1A2332;
    transform: translateY(-50%) scale(1.1);
}

.kitchen-gallery-nav.prev {
    left: 20px;
}

.kitchen-gallery-nav.next {
    right: 20px;
}

.kitchen-gallery-nav i {
    font-size: 1.2rem;
}

.kitchen-gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #E9C46A;
    transform: scale(1.2);
}

/* Mobile styles for kitchen gallery */
@media (max-width: 768px) {
    .kitchen-gallery {
        padding: 3rem 0;
    }
    
    .kitchen-gallery .section-header h2 {
        font-size: 2rem;
    }
    
    .kitchen-gallery .section-header h2::after {
        width: 320px;
        height: 3px;
        margin: 0.4rem auto 0 auto;
    }
    
    .kitchen-gallery-slider {
        margin: 0 1rem;
    }
    
    .kitchen-gallery-slides {
        height: 300px; /* Mobile: smaller but maintains 16:9 ratio */
    }
    
    .kitchen-gallery-slide img {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .kitchen-gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .kitchen-gallery-nav.prev {
        left: 10px;
    }
    
    .kitchen-gallery-nav.next {
        right: 10px;
    }
    
    .slide-info {
        padding: 1rem;
    }
    
    .slide-info h4 {
        font-size: 1.1rem;
    }
    
    .slide-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .kitchen-gallery .section-header h2::after {
        width: 300px;
        height: 3px;
    }
}

@media (max-width: 360px) {
    .kitchen-gallery .section-header h2::after {
        width: 260px;
        height: 3px;
    }
}

/* Large Desktop - optimized for 1920x1080 images */
@media (min-width: 1200px) {
    .kitchen-gallery-slides {
        height: 565px; /* 1000px / 1.77 = ~565px for 16:9 aspect ratio on large screens */
    }
    
    .kitchen-gallery-slide img {
        height: 100%;
    }
}

/* Quote Section Responsive Design */
@media (max-width: 768px) {
    .quote-section {
        padding: 60px 0;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-form-container,
    .quote-map-container {
        padding: 30px 20px;
    }
    
    .quote-title {
        font-size: 2rem;
    }
    
    .map-header h3 {
        font-size: 1.5rem;
    }
    
    .google-map {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .working-hours-info {
        padding: 20px;
    }
    
    .hours-header h4 {
        font-size: 1.1rem;
    }
    
    .hours-item {
        padding: 10px 0;
    }
    
    .quote-submit-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .quote-section {
        padding: 40px 0;
    }
    
    .quote-container {
        padding: 0 15px;
    }
    
    .quote-form-container,
    .quote-map-container {
        padding: 25px 15px;
    }
    
    .quote-title {
        font-size: 1.8rem;
    }
    
    .quote-subtitle {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .quote-submit-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .google-map {
        height: 250px;
        margin-bottom: 15px;
    }
    
    .working-hours-info {
        padding: 15px;
    }
    
    .hours-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .hours-header i {
        font-size: 1.1rem;
    }
    
    .hours-header h4 {
        font-size: 1rem;
    }
    
    .hours-schedule {
        gap: 12px;
    }
    
    .hours-item {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .hours-days,
    .hours-time {
        font-size: 0.9rem;
    }
    
    .map-header h3 {
        font-size: 1.3rem;
    }
}

/* Success Page Styles */
.success-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1A2332 0%, #2C3E50 100%);
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.success-hero-content {
    width: 100%;
}

.success-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon i {
    font-size: 5rem;
    color: #27AE60;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.2;
}

.success-message {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
}

.success-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 50px 0;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item i {
    color: #E9C46A;
    font-size: 2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.detail-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.success-actions .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
}

.success-actions .btn-primary {
    color: #EAEDF0 !important;
}

.success-actions .btn-primary:hover {
    color: #FFFFFF !important;
}

.success-actions .btn-secondary {
    color: #EAEDF0 !important;
}

.success-actions .btn-secondary:hover {
    color: #FFFFFF !important;
}

.urgent-note {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.3);
    border-radius: 10px;
    padding: 20px;
    color: #F1C40F;
    font-size: 1rem;
    margin-top: 30px;
}

.urgent-note i {
    margin-right: 10px;
}

/* Success Page Responsive */
@media (max-width: 768px) {
    .success-box {
        margin: 0 20px;
        padding: 40px 25px;
    }
    
    .success-title {
        font-size: 2.2rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .detail-item {
        padding: 20px;
    }
    
    .detail-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .success-hero {
        padding: 80px 0 30px;
    }
    
    .success-box {
        margin: 0 15px;
        padding: 30px 20px;
    }
    
    .success-icon i {
        font-size: 4rem;
    }
    
    .success-title {
        font-size: 1.8rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: #1A2332;
    padding: 20px 0;
    border-top: 1px solid rgba(233, 196, 106, 0.2);
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #EAEDF0;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    color: #EAEDF0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: #E9C46A;
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 25px;
    }
    
    .footer-social a {
        font-size: 1.4rem;
    }
}