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

html {
    scroll-behavior: smooth;
}

:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --dark-bg: #000000;
    --dark-bg-alt: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header.scrolled .logo-main {
    font-size: 30px;
}

.header.scrolled .logo-sub {
    font-size: 12px;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold) 15%,
        var(--gold) 85%,
        transparent 100%
    );
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin: 0;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 0;
    text-align: left;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link.active {
    color: var(--gold-light);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gold);
}

.btn-header {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-header-icon {
    display: none;
}

.btn-header:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-header:focus,
.btn-hero:focus,
.btn-read-more:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nav-link:focus {
    outline: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: visible;
    padding: 0 3% 0 3%;
    gap: 0;
}

.hero::before {
    display: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: -3;
    animation: heroBackgroundZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBackgroundZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.03) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -2;
}

/* Construction Board */
.construction-board {
    position: absolute;
    left: 1%;
    bottom: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    animation: fadeInUp 1s ease-out;
}

.board-post {
    width: 5px;
    height: 70px;
    background: linear-gradient(to bottom, 
        rgba(139, 69, 19, 0.9) 0%,
        rgba(101, 50, 14, 0.9) 50%,
        rgba(139, 69, 19, 0.9) 100%
    );
    border: 1px solid rgba(80, 40, 10, 0.8);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.board-sign {
    width: 130px;
    padding: 12px 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 3px solid #000;
    border-radius: 3px;
    box-shadow: 
        0 3px 8px rgba(0, 0, 0, 0.5),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    margin-bottom: -2px;
    position: relative;
    transform: perspective(100px) rotateX(2deg);
}

.board-sign::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: repeating-linear-gradient(
        45deg,
        #FFD700 0px,
        #FFD700 8px,
        #FFA500 8px,
        #FFA500 16px
    );
    border-radius: 3px;
    z-index: -1;
    opacity: 0.3;
}

.board-text {
    font-family: 'Arial Black', 'Arial Bold', sans-serif;
    font-size: 12px;
    font-weight: 900;
    color: #000;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.board-subtext {
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Construction Board */
@media (max-width: 968px) {
    .hero {
        padding: 0 3% 0 3%;
    }
    
    .hero-house {
        flex: 0 0 48%;
        max-width: 500px;
    }
    
    .hero-content {
        flex: 0 0 48%;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        padding: 120px 20px 40px 20px;
        min-height: auto;
        height: auto;
        align-items: center;
    }
    
    .hero-content {
        order: 1;
        flex: 0 0 auto;
        text-align: center;
        max-width: 100%;
        padding: 0;
        margin: 0;
        margin-top: 60px;
        margin-bottom: 30px;
        align-self: center;
        width: 100%;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .hero-house {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin-bottom: 0;
        opacity: 0.9;
        align-self: center;
        justify-content: center;
        position: relative;
    }
    
    .construction-board {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .board-sign {
        width: 110px;
        padding: 10px 8px;
    }
    
    .board-text {
        font-size: 11px;
        letter-spacing: 0.8px;
    }
    
    .board-subtext {
        font-size: 8px;
    }
    
    .board-post {
        height: 60px;
        width: 4px;
    }
}

@media (max-width: 480px) {
    .construction-board {
        left: 1%;
        bottom: 8%;
    }
    
    .board-sign {
        width: 100px;
        padding: 8px 6px;
    }
    
    .board-text {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .board-subtext {
        font-size: 7px;
        margin-top: 4px;
    }
    
    .board-post {
        height: 50px;
        width: 4px;
    }
}

.hero-house {
    position: relative;
    flex: 0 0 50%;
    max-width: none;
    height: auto;
    z-index: 0;
    opacity: 0.9;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    margin: 0;
    padding: 0;
    bottom: 0;
}

.house-silhouette {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 200, 100, 0.2));
    display: block;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
}


.window-group {
    /* Windows are fixed, no pulsation */
}

.window-light {
    /* Light is fixed, only glow pulsates */
    transition: opacity 0.3s ease;
}

.window-glow {
    animation: glowPulse 2.5s ease-in-out infinite;
    filter: blur(4px);
    transition: opacity 0.3s ease;
}

.ceiling-light {
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(255, 220, 150, 0.9));
}

.ceiling-light-glow {
    transition: opacity 0.3s ease;
    filter: blur(2px);
}


.window-group {
    cursor: pointer;
    transition: transform 0.1s ease;
}

.window-group:active {
    transform: scale(0.98);
}

/* Window lights are fixed, only glow pulsates */

.window-group.window-1 .window-glow {
    animation-delay: 0s;
}

.window-group.window-2 .window-glow {
    animation-delay: 0.4s;
}

.window-group.window-3 .window-glow {
    animation-delay: 0.8s;
}

.window-group.window-4 .window-glow {
    animation-delay: 1.2s;
}

.window-group.window-5 .window-glow {
    animation-delay: 1.6s;
}

.window-group.window-6 .window-glow {
    animation-delay: 2s;
}

.window-group.window-7 .window-glow {
    animation-delay: 2.4s;
}

.window-group.window-center .window-glow {
    animation-delay: 2.8s;
}

.window-group.window-8 .window-glow {
    animation-delay: 3.2s;
}

.window-group.window-9 .window-glow {
    animation-delay: 3.6s;
}

.window-group.window-center-4 .window-glow {
    animation-delay: 4s;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.05);
    }
}

/* Chimney and Smoke */
.chimney {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.chimney-top {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.smoke-group {
    filter: blur(2px);
}

.smoke {
    animation: smokeRise 4s ease-in-out infinite;
    transform-origin: center center;
}

.smoke-1 {
    animation-delay: 0s;
}

.smoke-2 {
    animation-delay: 0.3s;
}

.smoke-3 {
    animation-delay: 0.6s;
}

.smoke-4 {
    animation-delay: 0.9s;
}

.smoke-5 {
    animation-delay: 1.2s;
}

@keyframes smokeRise {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.8);
    }
    20% {
        opacity: 0.6;
        transform: translateY(-20px) translateX(2px) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-60px) translateX(-3px) scale(1.2);
    }
    80% {
        opacity: 0.4;
        transform: translateY(-100px) translateX(4px) scale(1.4);
    }
    100% {
        opacity: 0;
        transform: translateY(-140px) translateX(-2px) scale(1.6);
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.6;
}

.hero-content {
    text-align: left;
    z-index: 1;
    flex: 0 0 50%;
    max-width: none;
    padding-left: 40px;
    padding-right: 0;
    align-self: stretch;
    margin: 0;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    box-sizing: border-box;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
    align-self: flex-start;
}

.hero-title,
h1.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

.hero-title-line {
    display: block;
    animation: fadeInUp 1s ease;
}

.hero-title-line-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-title-line-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-white);
    font-weight: 300;
    margin-bottom: 35px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.6s both;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-hero {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 40px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    color: var(--text-white);
    background-color: transparent;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-hero-primary:hover::before {
    left: 0;
}

.btn-hero-primary:hover {
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
    color: var(--gold);
    background-color: transparent;
}

.btn-hero-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 400;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    background-color: var(--gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-description {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease 1s both;
}

.hero-description p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold) 15%,
        var(--gold) 85%,
        transparent 100%
    );
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

section:first-of-type::before {
    display: none;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.section-title-center {
    text-align: center;
}

.section-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 600px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Us Section */
.about {
    background-color: var(--dark-bg-alt);
}

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

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.about-feature-item h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-feature-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background-color: var(--gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Process Section */
.process {
    background-color: var(--dark-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: 0;
    will-change: transform;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(212, 175, 55, 0.05) 100%
    );
    z-index: 1;
}

.process-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        );
    z-index: 1;
    opacity: 0.5;
}

.process .container {
    position: relative;
    z-index: 2;
}

.section-text-center {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-top: 50px;
    position: relative;
    align-items: center;
}

.process-step {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 40px 25px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    grid-column: span 1;
    width: 100%;
    aspect-ratio: 1;
    min-height: 280px;
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-step:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.process-connector {
    position: relative;
    height: 2px;
    margin: 0 10px;
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(212, 175, 55, 0.3) 100%
    );
    overflow: hidden;
}

.process-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    animation: processLineFlow 3s ease-in-out infinite;
}

@keyframes processLineFlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.process-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--gold);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    animation: processArrowPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.6));
}

@keyframes processArrowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

.process-step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.process-step:hover .process-step-icon {
    background: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(212, 175, 55, 0.8);
    }
}

.process-step-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.process-step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.process-step-title {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.process-step-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--dark-bg-alt);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold) 15%,
        var(--gold) 85%,
        transparent 100%
    );
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    z-index: 1;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-choose-item {
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.why-choose-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.why-choose-item h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Service Area Section */
.service-area {
    background-color: var(--dark-bg);
    padding: 80px 0;
}

.service-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.area-item {
    padding: 12px 30px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--gold);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-item:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Construction Divider */
.construction-divider {
    width: 100%;
    height: 40px;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            #FFD700 15px,
            #FFD700 30px
        );
    background-size: 42px 42px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
}

.construction-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 215, 0, 0.3) 50%,
        rgba(255, 215, 0, 0.1) 100%
    );
}

.section-header-with-icon {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.process .section-header-with-icon .section-title {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.process .section-text-center {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.section-icon {
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Services Section */
.services {
    background-color: var(--dark-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 20%,
        var(--gold) 80%,
        transparent 100%
    );
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    z-index: 3;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    z-index: 0;
    will-change: transform;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(212, 175, 55, 0.03) 100%
    );
    z-index: 1;
}

.services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        );
    z-index: 1;
    opacity: 0.5;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    padding: 40px 30px;
    text-align: center;
    color: var(--text-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(0, 0, 0, 0.2) 100%);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 28px;
}

.service-item:hover .service-icon {
    background: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    margin-top: auto;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.btn-read-more:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Projects Section */
.projects {
    background-color: var(--dark-bg-alt);
}

.projects-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    padding: 0 60px;
}

.projects-carousel {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.projects-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

.project-item {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .project-item {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .project-item {
        min-width: 100%;
    }
    
    .projects-carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

.project-item:hover {
    transform: scale(1.05);
}

.project-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7), transparent);
    padding: 30px 20px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .project-overlay {
        opacity: 1;
    }
}

.project-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.project-category {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.btn-project-read-more {
    display: inline-block;
    color: var(--text-white);
    background-color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-project-read-more:hover {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.projects-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-more {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 40px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.testimonial-item {
    text-align: center;
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    margin: 0 auto;
    border: 2px solid var(--gold);
}

.testimonial-name {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--dark-bg-alt);
    padding: 60px 0 40px;
    border-top: none;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold) 15%,
        var(--gold) 85%,
        transparent 100%
    );
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-left {
    flex: 1;
    max-width: 60%;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-light);
}

.footer-about {
    margin-top: 20px;
}

.footer-about-text {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 500px;
}

.footer-phone {
    color: var(--gold);
    font-size: 16px;
    margin-top: 10px;
}

.footer-email {
    color: var(--gold);
    font-size: 16px;
    margin-top: 10px;
}

.footer-email a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.footer-right {
    flex: 0 0 auto;
    text-align: right;
}

.footer-brand {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 25px;
}

.footer-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin: 0 0 5px 0;
}

.footer-logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.social-icon {
    color: var(--gold);
    transition: color 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: var(--gold-light);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold) 15%,
        var(--gold) 85%,
        transparent 100%
    );
    margin: 0 auto 20px;
    opacity: 0.7;
}

.footer-credit {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.footer-credit-link {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Before/After Slider Section */
.before-after {
    background-color: var(--dark-bg-alt);
    padding: 100px 0;
}

.before-after-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    font-size: 14px;
    margin: 20px 0 30px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: pulseHint 2s ease-in-out infinite;
}

.before-after-hint svg {
    animation: slideHint 1.5s ease-in-out infinite;
}

@keyframes pulseHint {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes slideHint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.before-after-carousel-wrapper {
    position: relative;
    margin-top: 50px;
}

.before-after-carousel {
    overflow: hidden;
    margin: 0 60px;
}

.before-after-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    will-change: transform;
}

.before-after-item {
    position: relative;
    flex: 0 0 calc(50% - 15px);
    min-width: 0;
    width: calc(50% - 15px);
}

.before-after-item {
    position: relative;
}

.before-after-title {
    font-size: 24px;
    color: var(--gold);
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

.before-after-slider {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    cursor: grab;
}

.before-after-slider:active {
    cursor: grabbing;
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.before-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    clip-path: inset(0 50% 0 0);
    z-index: 1;
}

.after-image {
    clip-path: inset(0 0 0 50%);
    z-index: 2;
}

.before-after-label {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 10;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.before-image .before-after-label {
    left: 20px;
}

.after-image .before-after-label {
    right: 20px;
}

.before-after-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--gold);
    z-index: 3;
    cursor: grab;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    animation: pulseHandle 2s ease-in-out infinite;
}

.before-after-handle:active {
    cursor: grabbing;
    animation: none;
}

.before-after-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gold),
        transparent
    );
}

.before-after-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
    border: 3px solid var(--dark-bg);
    animation: bounceButton 2s ease-in-out infinite;
}

.before-after-button svg {
    width: 24px;
    height: 24px;
}

.before-after-handle:hover .before-after-button {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.9);
    animation: none;
}

@keyframes pulseHandle {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 1);
    }
}

@keyframes bounceButton {
    0%, 100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -50%) translateX(-2px);
    }
}

.before-after-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.before-after-btn:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.before-after-btn-prev {
    left: 0;
}

.before-after-btn-next {
    right: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in-up.visible,
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile fallback: ensure services section is visible after page load */
@media (max-width: 768px) {
    .services.fade-in-up {
        /* Fallback: if visible class isn't added, show after 1 second */
        animation: fadeInFallback 0.6s ease 1s forwards;
    }
    
    @keyframes fadeInFallback {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Ensure services content is always visible on mobile */
    .services .container {
        position: relative;
        z-index: 10 !important;
    }
    
    .services-grid {
        position: relative;
        z-index: 10;
    }
    
    .service-item {
        position: relative;
        z-index: 11;
    }
    
    /* Ensure text and icons are visible */
    .service-title,
    .service-description,
    .service-icon,
    .btn-read-more {
        position: relative;
        z-index: 12;
    }
    
    /* Fallback: Force service items to be visible after 2.5 seconds if JS doesn't trigger */
    .services-grid[data-stagger] .service-item {
        animation: serviceItemFallback 0.6s ease 2.5s forwards;
    }
    
    @keyframes serviceItemFallback {
        to {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }
    }
    
    /* Ensure service items have proper display even when hidden */
    .services-grid[data-stagger] .service-item {
        display: flex;
        flex-direction: column;
        visibility: visible;
    }
}

/* Advanced Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
}

/* Animation Types */
.animate-fade-up {
    transform: translateY(50px);
}

.animate-fade-up.animate-in {
    transform: translateY(0);
}

.animate-fade-left {
    transform: translateX(-50px);
}

.animate-fade-left.animate-in {
    transform: translateX(0);
}

.animate-fade-right {
    transform: translateX(50px);
}

.animate-fade-right.animate-in {
    transform: translateX(0);
}

.animate-fade-down {
    transform: translateY(-50px);
}

.animate-fade-down.animate-in {
    transform: translateY(0);
}

.animate-scale {
    transform: scale(0.8);
}

.animate-scale.animate-in {
    transform: scale(1);
}

.animate-rotate {
    transform: rotate(-10deg) scale(0.9);
}

.animate-rotate.animate-in {
    transform: rotate(0deg) scale(1);
}

.animate-flip {
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0;
}

.animate-flip.animate-in {
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
}

.animate-zoom {
    transform: scale(1.2);
    opacity: 0;
}

.animate-zoom.animate-in {
    transform: scale(1);
    opacity: 1;
}

/* Image Reveal Animation */
.image-reveal {
    position: relative;
    overflow: hidden;
}

.image-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 1;
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.image-reveal.revealed::before {
    transform: translateX(100%);
}

.image-reveal img {
    transition: opacity 0.6s ease 0.3s;
    opacity: 0;
}

.image-reveal.revealed img {
    opacity: 1;
}

/* Progress Bar Animation */
[data-progress] {
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

[data-progress]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Text Animation */
[data-text-animate] .word {
    display: inline-block;
    margin-right: 0.3em;
}

/* Counter Animation */
[data-count] {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* Stagger Animation Enhancement */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Back to Top Button */
/* Floating Action Buttons Container */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    align-items: flex-end;
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    order: 2;
}

.whatsapp-chat:hover {
    background-color: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat svg {
    width: 24px;
    height: 24px;
}

.back-to-top {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    order: 1;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--gold-light);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link.active {
        border-bottom-color: var(--gold);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .whatsapp-chat {
        width: 50px;
        height: 50px;
    }

    .whatsapp-chat svg {
        width: 24px;
        height: 24px;
    }

    .back-to-top {
        width: 50px;
        height: 50px;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--dark-bg-alt);
    padding: 120px 0 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--text-gray);
    font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--gold);
}

.breadcrumbs a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: var(--text-white);
}

/* Service Detail Page */
.service-detail {
    background-color: var(--dark-bg);
    padding: 50px 0 100px;
    min-height: 100vh;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.back-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold-light);
}

.service-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-intro {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.service-detail-body {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 50px;
}

.service-detail-body h3 {
    color: var(--gold);
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 600;
}

.service-detail-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.service-detail-body li {
    margin-bottom: 12px;
    color: var(--text-gray);
}

.service-detail-body p {
    margin-bottom: 20px;
}

.service-detail-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-service-contact {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 15px 50px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-service-contact:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 15px;
        position: relative;
    }

    .logo {
        justify-self: center;
        grid-column: 2;
        grid-row: 1;
    }

    .mobile-menu-toggle {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: center;
        order: 1;
    }

    .btn-header {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        display: flex;
        padding: 10px;
        min-width: 40px;
        justify-content: center;
        align-items: center;
        order: 3;
    }

    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-top: 2px solid var(--gold);
        z-index: 999;
        width: 100%;
    }
    
    .nav.mobile-open {
        display: flex;
        transform: translateX(0);
    }

    .btn-header-text {
        display: none;
    }

    .btn-header-icon {
        display: block;
    }

    .hero-title {
        font-size: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features {
        gap: 20px;
    }
    

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text .section-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
    }
    
    .process-step {
        margin-bottom: 0;
    }
    
    .process-connector {
        grid-column: span 1;
        width: 2px;
        height: 60px;
        margin: -30px auto;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    
    .process-line {
        position: absolute !important;
        width: 2px !important;
        height: 100% !important;
        left: 50% !important;
        top: 0 !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        background: rgba(212, 175, 55, 0.3) !important;
        overflow: hidden !important;
    }
    
    .process-line::before {
        content: '';
        position: absolute;
        top: -100% !important;
        left: 0 !important;
        width: 100% !important;
        height: 200% !important;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 30%,
            var(--gold) 50%,
            transparent 70%,
            transparent 100%
        ) !important;
        animation: processLineFlowVertical 2.5s ease-in-out infinite;
        opacity: 0;
    }
    
    .process-connector:nth-child(2) .process-line::before {
        animation-delay: 0s;
    }
    
    .process-connector:nth-child(4) .process-line::before {
        animation-delay: 2.5s;
    }
    
    .process-connector:nth-child(6) .process-line::before {
        animation-delay: 5s;
    }
    
    .process-arrow {
        position: absolute !important;
        right: auto !important;
        top: -8px !important;
        bottom: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 0 !important;
        height: 0 !important;
        border-left: 6px solid transparent !important;
        border-right: 6px solid transparent !important;
        border-top: 8px solid var(--gold) !important;
        border-bottom: none !important;
        animation: processArrowFlowVertical 2.5s ease-in-out infinite;
        filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.8));
        z-index: 2;
        opacity: 0;
    }
    
    .process-connector:nth-child(2) .process-arrow {
        animation-delay: 0s;
    }
    
    .process-connector:nth-child(4) .process-arrow {
        animation-delay: 2.5s;
    }
    
    .process-connector:nth-child(6) .process-arrow {
        animation-delay: 5s;
    }
    
    @keyframes processLineFlowVertical {
        0% {
            top: -100%;
            opacity: 0;
        }
        3% {
            opacity: 1;
        }
        97% {
            opacity: 1;
        }
        100% {
            top: 0%;
            opacity: 0;
        }
    }
    
    @keyframes processArrowFlowVertical {
        0% {
            top: -8px;
            opacity: 0;
        }
        3% {
            opacity: 1;
        }
        97% {
            opacity: 1;
        }
        100% {
            top: calc(100% + 8px);
            opacity: 0;
        }
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        min-height: 300px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .before-after-carousel {
        margin: 0 50px;
    }

    .before-after-item {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
    }

    .before-after-container {
        height: 350px;
    }

    .before-after-button {
        width: 45px;
        height: 45px;
    }

    .before-after-button svg {
        width: 22px;
        height: 22px;
    }

    .before-after-hint {
        font-size: 13px;
        padding: 10px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-left {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about-text {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 15px;
    }

    .footer-phone {
        text-align: center;
        margin: 15px auto 0;
    }
    
    .footer-email {
        text-align: center;
        margin: 10px auto 0;
    }

    .footer-right {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
        margin-bottom: 25px;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }

    .before-after-carousel {
        margin: 0 40px;
    }

    .before-after-item {
        flex: 0 0 100%;
        width: 100%;
    }

    .before-after-container {
        height: 300px;
    }

    .before-after-btn {
        width: 40px;
        height: 40px;
    }

    .before-after-hint {
        font-size: 12px;
        padding: 8px 16px;
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .btn-hero {
        font-size: 14px;
        padding: 12px 30px;
    }
    
    .hero-feature {
        font-size: 13px;
    }
    
    .hero-house {
        max-width: 350px;
    }
    
    .hero-content {
        margin-top: 50px !important;
        margin-bottom: 20px;
        align-items: center;
    }
    
    .hero-badge {
        align-self: center;
    }
    
    .hero-title {
        font-size: 36px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-align: center;
    }
    
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 20px 40px 20px;
        min-height: auto;
        height: auto;
        align-items: center;
    }
    
    .hero-content {
        order: 1;
        flex: 0 0 auto;
        text-align: center;
        max-width: 100%;
        padding: 0;
        margin: 0;
        margin-bottom: 30px;
        align-self: center;
        width: 100%;
    }
    
    .hero-house {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin-bottom: 0;
        opacity: 0.9;
        align-self: center;
        justify-content: center;
        position: relative;
    }
    
    .construction-board {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .btn-hero {
        font-size: 14px;
        padding: 12px 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        min-height: auto;
    }

    .service-detail-title {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 42px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-link {
        font-size: 12px;
    }
}

