:root {
    --color-primary: #020614;
    --color-secondary: #161B22;
    --color-accent: #CFB360;
    --color-dark: #0D1117;
    --color-light-accent: #E2CC88;
    --color-black: #000000;
    --color-gold: #E2CC87;
    --color-gold-dark: #B89A50;
    --color-white: #FFFFFF;
    --color-gray: #21262D;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--color-white);
    background-color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(2, 6, 20, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(207, 179, 96, 0.1);
}

.navbar.scrolled {
    background: rgba(2, 6, 20, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-accent);
    position: relative;
}

.logo img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    -webkit-image-rendering: -webkit-optimize-contrast;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)) contrast(1.05) brightness(1.02);
    transition: transform 0.4s ease, filter 0.4s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.logo:hover img {
    transform: translateY(-4px) scale(1.08);
    filter: drop-shadow(0 15px 30px rgba(207, 179, 96, 0.35));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.btn-call {
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(207, 179, 96, 0.35);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-call::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-call:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(207, 179, 96, 0.5);
}

.btn-call:hover::before {
    opacity: 1;
}

.btn-call:active {
    transform: translateY(0);
    box-shadow: 0 3px 15px rgba(207, 179, 96, 0.4);
}

.btn-call-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/image2.png') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--color-primary) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(207, 179, 96, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    background: var(--color-gold);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 25px rgba(207, 179, 96, 0.5);
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.75rem;
    background: rgba(13, 17, 23, 0.75);
    border: 1px solid rgba(226, 204, 135, 0.35);
    border-radius: 14px;
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(226, 204, 135, 0.25), rgba(191, 161, 84, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-badge svg {
    width: 26px;
    height: 26px;
    color: inherit;
    flex-shrink: 0;
    transition: transform 0.35s ease, color 0.35s ease;
}

.feature-badge span {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.feature-badge:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(226, 204, 135, 0.25);
}

.feature-badge:hover::after {
    opacity: 1;
}

.feature-badge:hover svg {
    transform: scale(1.15) rotate(-5deg);
    color: var(--color-accent);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.animate-fade-in-delay-4 {
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.services {
    padding: 100px 0;
    background: var(--color-secondary);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-dark);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(207, 179, 96, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(207, 179, 96, 0.3);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(207, 179, 96, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(207, 179, 96, 0.2);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.why-choose {
    padding: 100px 0;
    background: var(--color-primary);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text {
    max-width: 600px;
}

.benefits-list {
    margin-top: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--color-dark);
    border-radius: 12px;
    border: 1px solid rgba(207, 179, 96, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: rgba(207, 179, 96, 0.3);
    transform: translateX(10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(207, 179, 96, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.benefit-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.why-choose-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.image-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
    padding: 50px 80px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-dark);
    padding: 25px;
    box-sizing: border-box;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(207, 179, 96, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    z-index: 1;
}

.image-frame[data-index="0"] {
    transform: translateX(-30px) translateY(-25px) rotate(-3deg);
    z-index: 1;
}

.image-frame[data-index="1"] {
    transform: translateX(-10px) translateY(-15px) rotate(-1deg);
    z-index: 2;
}

.image-frame[data-index="2"] {
    transform: translateX(10px) translateY(-5px) rotate(1deg);
    z-index: 3;
}

.image-frame[data-index="3"] {
    transform: translateX(30px) translateY(5px) rotate(3deg);
    z-index: 4;
}

.image-frame[data-index="4"] {
    transform: translateX(50px) translateY(15px) rotate(5deg);
    z-index: 5;
}

.image-frame.active {
    z-index: 10;
    transform: translateX(0) translateY(-40px) scale(1.05) rotate(0deg) !important;
}

.image-frame:hover {
    z-index: 11;
    transform: translateX(0) translateY(-50px) scale(1.08) rotate(0deg) !important;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-gold), var(--color-accent));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.image-frame.active::before,
.image-frame:hover::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid var(--color-accent);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
    box-shadow: 
        0 0 0 3px var(--color-dark),
        inset 0 0 30px rgba(207, 179, 96, 0.3),
        0 0 15px rgba(207, 179, 96, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.image-frame.active .frame-border {
    border-color: var(--color-gold);
    border-width: 5px;
    box-shadow: 
        0 0 0 3px var(--color-dark),
        inset 0 0 40px rgba(207, 179, 96, 0.5),
        0 0 30px rgba(207, 179, 96, 0.4),
        0 0 50px rgba(207, 179, 96, 0.3);
}

.image-frame:hover .frame-border {
    border-color: var(--color-gold);
    border-width: 5px;
    box-shadow: 
        0 0 0 3px var(--color-dark),
        inset 0 0 40px rgba(207, 179, 96, 0.5),
        0 0 30px rgba(207, 179, 96, 0.4),
        0 0 50px rgba(207, 179, 96, 0.3);
}

.image-frame img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
    filter: brightness(0.95) contrast(1.05);
    box-sizing: border-box;
    flex-shrink: 0;
}

.image-frame.active img {
    filter: brightness(1.05) contrast(1.1);
}

.image-frame:hover img {
    transform: scale(1.05);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 10;
    position: relative;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-accent);
    transition: all 0.3s ease;
}

.indicator.active {
    border-color: var(--color-gold);
    background: var(--color-gold);
    transform: scale(1.2);
}

.indicator.active::before {
    width: 8px;
    height: 8px;
}

.indicator:hover {
    border-color: var(--color-gold);
    transform: scale(1.3);
}

@media (max-width: 968px) {
    .image-carousel {
        max-width: 100%;
    }

    .image-frame {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .image-carousel {
        max-width: 100%;
        aspect-ratio: auto;
        padding: 0;
        height: auto;
        touch-action: pan-y;
    }

    .carousel-container {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        perspective: none;
        touch-action: pan-y;
    }

    .image-frame {
        position: relative !important;
        width: 100%;
        height: auto;
        padding: 20px;
        transform: none !important;
        opacity: 1 !important;
        z-index: 1;
        touch-action: pan-y;
        pointer-events: auto;
    }

    .image-frame[data-index="0"],
    .image-frame[data-index="1"],
    .image-frame[data-index="2"],
    .image-frame[data-index="3"],
    .image-frame[data-index="4"] {
        transform: none !important;
    }

    .image-frame.active {
        transform: none !important;
    }

    .image-frame:hover {
        transform: translateY(-3px) scale(1.01) !important;
    }

    .image-frame img {
        width: 100%;
        height: auto;
        min-height: 350px;
        object-fit: cover;
        pointer-events: auto;
        touch-action: pan-y;
    }

    .carousel-indicators {
        margin-top: 2rem;
        gap: 0.75rem;
        display: none;
    }

    .indicator {
        width: 10px;
        height: 10px;
        pointer-events: none;
    }
}

.service-areas {
    padding: 80px 0;
    background: var(--color-secondary);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background: var(--color-dark);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(207, 179, 96, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(207, 179, 96, 0.1), transparent);
    transition: left 0.5s;
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(207, 179, 96, 0.4);
    border-color: var(--color-accent);
}

.area-card:active {
    transform: translateY(-4px) scale(1.02);
}

.reviews {
    padding: 100px 0;
    background: var(--color-primary);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--color-dark);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(207, 179, 96, 0.1);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(207, 179, 96, 0.3);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.contact {
    padding: 100px 0;
    background: var(--color-secondary);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-dark);
    border-radius: 12px;
    border: 1px solid rgba(207, 179, 96, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(207, 179, 96, 0.3);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(207, 179, 96, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.contact-details a,
.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--color-accent);
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: var(--color-dark);
    border: 1px solid rgba(207, 179, 96, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

#map,
.map-iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 0;
}

.footer {
    position: relative;
    background: radial-gradient(circle at top left, rgba(207, 179, 96, 0.12), transparent 45%),
        radial-gradient(circle at top right, rgba(47, 119, 255, 0.08), transparent 35%),
        var(--color-black);
    padding: 70px 0 35px;
    border-top: 1px solid rgba(207, 179, 96, 0.1);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(22, 27, 34, 0.85), rgba(2, 6, 20, 0.95));
    opacity: 0.85;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}


.footer-section {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(207, 179, 96, 0.12);
    background: rgba(13, 17, 23, 0.7);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.footer-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(207, 179, 96, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.footer-section:hover {
    border-color: rgba(207, 179, 96, 0.5);
    transform: translateY(-6px);
    box-shadow:
        0 25px 35px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(207, 179, 96, 0.2);
}

.footer-section:hover::after {
    opacity: 1;
}

.footer-heading {
    display: inline-block;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(120deg, var(--color-gold), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.55);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section ul li:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-section ul li a {
    color: inherit;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 46px;
    height: 46px;
    background: rgba(226, 204, 135, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    border: 1px solid rgba(226, 204, 135, 0.25);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 25px rgba(207, 179, 96, 0.35);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(207, 179, 96, 0.15);
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--color-accent);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.floating-call-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    min-width: 75px;
    height: 75px;
    padding: 0 20px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(207, 179, 96, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.floating-call-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.floating-call-text {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}

.floating-call-btn:hover {
    background: var(--color-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(207, 179, 96, 0.6);
}

.floating-call-btn:active {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(207, 179, 96, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(207, 179, 96, 0);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(2, 6, 20, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease-in-out;
        border-top: 1px solid rgba(207, 179, 96, 0.1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-menu li a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
        font-size: 1.1rem;
    }

    .nav-menu li a:hover {
        background: rgba(207, 179, 96, 0.1);
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .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);
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-image {
        order: -1;
    }

    .image-carousel {
        max-width: 100%;
    }

    .image-frame {
        padding: 16px;
    }

    .carousel-indicators {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }

    .hero {
        padding: 120px 0 180px;
        min-height: 0;
    }

    .hero-content {
        margin-top: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .feature-badge {
        width: 100%;
        justify-content: center;
    }

    .services {
        padding-top: 120px;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 85vh;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 5px;
        line-height: 1.8;
    }

    .services,
    .why-choose,
    .reviews,
    .contact,
    .service-areas {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .area-card {
        padding: 1.75rem 1.25rem;
        font-size: 1.1rem;
        min-height: 80px;
        font-weight: 600;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-heading {
        font-size: 1.6rem;
    }

    .floating-call-btn {
        min-width: 70px;
        height: 70px;
        padding: 0 18px;
        gap: 8px;
        bottom: 20px;
        right: 20px;
        font-size: 14px;
    }

    .floating-call-icon {
        width: 22px;
        height: 22px;
    }

    .floating-call-text {
        font-size: 14px;
    }

    .contact-item {
        padding: 2rem 1.5rem;
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }

    .contact-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .contact-details h4 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .contact-details a,
    .contact-details p {
        font-size: 1.05rem;
    }

    .benefit-item {
        padding: 1.75rem;
        gap: 1.25rem;
        flex-direction: row;
        text-align: left;
    }

    .benefit-icon {
        flex-shrink: 0;
    }

    .benefit-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .benefit-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .review-card {
        padding: 2.5rem 2rem;
    }

    .review-text {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .logo img {
        width: 65px;
        height: 65px;
    }

    .logo:hover img {
        transform: none;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)) contrast(1.05) brightness(1.02);
    }

    .logo {
        z-index: 1;
        overflow: visible;
    }

    .btn-call {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1.2rem 2.5rem;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 50px;
        min-height: 82vh;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0;
        line-height: 1.75;
    }

    .btn-primary,
    .btn-secondary,
    .btn-call {
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
        width: 100%;
        justify-content: center;
    }

    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .area-card {
        padding: 1.5rem;
        font-size: 1.05rem;
        min-height: 75px;
    }

    .hero {
        padding: 110px 0 160px;
        min-height: 0;
    }

    .hero-content {
        margin-top: 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .feature-badge {
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .services {
        padding: 100px 0 50px;
    }

    .why-choose,
    .reviews,
    .contact,
    .service-areas {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 0.875rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .benefit-item {
        padding: 1.5rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .benefit-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .benefit-content h4 {
        font-size: 1.2rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .contact-item {
        padding: 1.75rem 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .floating-call-btn {
        min-width: 60px;
        height: 60px;
        padding: 0 15px;
        gap: 6px;
        bottom: 18px;
        right: 18px;
        font-size: 13px;
    }

    .floating-call-icon {
        width: 20px;
        height: 20px;
    }

    .floating-call-text {
        font-size: 13px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .logo span {
        font-size: 1rem;
    }

    .logo img {
        width: 70px;
        height: 70px;
    }

    .logo:hover img {
        transform: none;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4)) contrast(1.05) brightness(1.02);
    }

    .logo {
        z-index: 1;
        overflow: visible;
    }

    .footer-heading {
        font-size: 1.4rem;
    }

    .nav-menu {
        padding: 2rem 1.5rem;
    }

    .nav-menu li {
        margin-bottom: 0.75rem;
    }

    .nav-menu li a {
        padding: 1rem;
        font-size: 1.05rem;
    }

    .map-container {
        height: 350px;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
