:root {
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B8941F;
    --primary-gold-light: #E8D5A3;
    --navy: #1a2332;
    --navy-dark: #0f1419;
    --navy-light: #2d3a4f;
    --text-dark: #1a2332;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-cream: #faf8f3;
    --border-gold: rgba(212, 175, 55, 0.2);
    --shadow-soft: 0 4px 24px rgba(26, 35, 50, 0.08);
    --shadow-medium: 0 8px 32px rgba(26, 35, 50, 0.12);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(26, 35, 50, 0.08);
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    will-change: box-shadow, background;
}

.main-nav.scrolled {
    box-shadow: 0 8px 40px rgba(26, 35, 50, 0.12);
    background: rgba(255, 255, 255, 0.99);
    will-change: auto;
}

@keyframes slideDown {
    from { 
        transform: translateY(-100%);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-wrapper {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    flex-shrink: 0;
    margin-right: auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2px;
    line-height: 1;
    position: relative;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
    margin-left: auto;
}

.nav-links li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    overflow: hidden;
}

.nav-link span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.12) 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
}

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

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link:active {
    transform: scale(0.98);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu */
@media (max-width: 968px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .nav-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo-section {
        flex: 1;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 7rem 0 2rem;
        gap: 0.5rem;
        box-shadow: -8px 0 40px rgba(26, 35, 50, 0.25);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(212, 175, 55, 0.15);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.05rem;
        font-weight: 500;
        width: 100%;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        margin: 0;
    }

    .nav-link::before {
        border-radius: 0;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.15) 100%);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: var(--navy);
        padding-left: 2.5rem;
        background: rgba(212, 175, 55, 0.05);
        transform: translateX(0);
    }

    .nav-link:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(26, 35, 50, 0.6);
        backdrop-filter: blur(4px);
        z-index: 999;
        animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
    scroll-margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-image {
        animation: heroImageZoom 20s ease-in-out infinite;
    }
}

@keyframes heroImageZoom {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.88) 0%, rgba(26, 35, 50, 0.75) 50%, rgba(26, 35, 50, 0.82) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: 3;
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-pattern {
        animation: patternMove 15s ease-in-out infinite;
    }
}

@keyframes patternMove {
    0%, 100% {
        opacity: 0.5;
        transform: translate3d(0, 0, 0);
    }
    50% {
        opacity: 0.8;
        transform: translate3d(0, -20px, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    color: white;
    width: 100%;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.1s both;
    font-family: 'Inter', sans-serif;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-title-main {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    color: white;
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3), 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.hero-title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    animation: expandLine 1s ease-out 1.2s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.hero-title-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hero-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--primary-gold), transparent);
    margin: 2rem auto;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero .tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--primary-gold-light);
    font-weight: 400;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.hero .subtitle {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3.5rem;
    animation: fadeInUp 1s ease-out 0.7s both;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
    margin-bottom: 4rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--primary-gold);
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3), 0 0 0 0 rgba(212, 175, 55, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5), 0 0 0 4px rgba(212, 175, 55, 0.2);
    background: var(--primary-gold-dark);
    color: white;
}

.cta-button.secondary:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1.1s both;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-gold), transparent);
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* About Section */
.about {
    position: relative;
    padding: 10rem 2rem;
    background: var(--bg-white);
    z-index: 10;
    scroll-margin-top: 80px;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-gradient-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGradient 20s ease-in-out infinite;
}

.about-gradient-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGradient 25s ease-in-out infinite reverse;
}

.about-gradient-1,
.about-gradient-2 {
    will-change: transform;
}

@media (prefers-reduced-motion: no-preference) {
    .about-gradient-1 {
        animation: floatGradient 20s ease-in-out infinite;
    }
    
    .about-gradient-2 {
        animation: floatGradient 25s ease-in-out infinite reverse;
    }
}

@keyframes floatGradient {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }
    50% {
        transform: translate3d(30px, -30px, 0) scale3d(1.1, 1.1, 1);
    }
}

.section-background-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact-decoration {
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.section-label.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--primary-gold-light);
    backdrop-filter: blur(10px);
}

.section-title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    margin: 1.5rem 0;
}

.section-header.centered .section-title-divider {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

/* About Header */
.about-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
}

.about-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--bg-light) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-gold-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.about-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.2);
    aspect-ratio: 4/3;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.1);
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

.about-text-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--bg-light) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.1);
    border-left: 4px solid var(--primary-gold);
}

.about-text-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-text-block p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--bg-light) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border-left: 4px solid var(--primary-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-left-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 48px rgba(26, 35, 50, 0.15);
    border-left-color: var(--primary-gold-dark);
}

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

.feature-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-number {
    opacity: 0.6;
    transform: scale(1.1);
}

.feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* About Values */
.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--bg-light) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    margin-bottom: 0;
    letter-spacing: 1px;
    position: relative;
    line-height: 1.2;
}

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

.section-subtitle {
    text-align: left;
    color: var(--text-medium);
    font-size: 1.15rem;
    margin-bottom: 0;
    margin-top: 1.5rem;
    line-height: 1.9;
    font-weight: 300;
}

.section-header.centered .section-subtitle {
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, var(--bg-light) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translate3d(0, -8px, 0) scale3d(1.02, 1.02, 1);
    box-shadow: 0 16px 48px rgba(26, 35, 50, 0.15);
    border-left-color: var(--primary-gold-dark);
    border-left-width: 5px;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.feature-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    color: var(--navy);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Services Section */
.services {
    position: relative;
    padding: 10rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    z-index: 10;
    scroll-margin-top: 80px;
    overflow: hidden;
}

.services-background-decoration {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }
    50% {
        transform: translate3d(30px, -30px, 0) scale3d(1.1, 1.1, 1);
    }
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 300;
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, white 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translate3d(0, -12px, 0);
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    z-index: 1;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    transform: rotate(5deg) scale(1.1);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.service-icon {
    width: 36px;
    height: 36px;
    stroke-width: 2;
    color: var(--primary-gold-dark);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--navy);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-gold-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: auto;
    text-decoration: none;
    cursor: pointer;
}

.service-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--primary-gold);
}

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 10rem 2rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    z-index: 10;
    scroll-margin-top: 80px;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: contactGradientFloat 25s ease-in-out infinite;
}

.contact-pattern {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: contactGradientFloat 30s ease-in-out infinite reverse;
}

@keyframes contactGradientFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }
    50% {
        transform: translate3d(40px, -40px, 0) scale3d(1.1, 1.1, 1);
    }
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-weight: 300;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    align-items: start;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 16px 48px rgba(26, 35, 50, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.info-card:hover .info-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    transform: rotate(5deg) scale(1.1);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.info-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    color: var(--primary-gold-dark);
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    color: var(--navy);
}

.info-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.info-card a {
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-weight: 400;
}

.info-card a:hover {
    color: var(--primary-gold-dark);
    border-bottom-color: var(--primary-gold);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) brightness(0.95);
    transition: filter 0.3s ease;
}

.map-container:hover .map-iframe {
    filter: grayscale(0%) brightness(1);
}

.map-overlay-card {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, white 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(26, 35, 50, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.2);
    max-width: 380px;
    z-index: 10;
    transition: all 0.4s ease;
}

.map-overlay-card:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 16px 64px rgba(26, 35, 50, 0.3);
}

.overlay-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.overlay-icon {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    padding: 0.5rem;
    border-radius: 10px;
}

.overlay-card-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 700;
    margin: 0;
}

.overlay-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.overlay-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.overlay-info-item strong {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.overlay-info-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.overlay-info-item a {
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.overlay-info-item a:hover {
    color: var(--primary-gold-dark);
    border-bottom-color: var(--primary-gold);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border-left: 4px solid var(--primary-gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 16px 48px rgba(26, 35, 50, 0.15);
    border-left-width: 5px;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.contact-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    color: var(--navy);
}

.contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-card a {
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-gold-dark);
    border-bottom-color: var(--primary-gold);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, white 100%);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(26, 35, 50, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
}

.contact-form-wrapper:hover {
    box-shadow: 0 20px 64px rgba(26, 35, 50, 0.18);
    transform: translate3d(0, -5px, 0);
}

.contact-form-wrapper:hover {
    box-shadow: 0 20px 64px rgba(26, 35, 50, 0.18);
    transform: translate3d(0, -5px, 0);
}

.form-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
}

.form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: var(--bg-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1), 0 4px 16px rgba(212, 175, 55, 0.1);
    transform: translate3d(0, -2px, 0);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Inter', sans-serif;
}

.submit-btn {
    width: 100%;
    padding: 1.3rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--primary-gold-dark) 0%, var(--primary-gold) 100%);
    color: white;
}

.submit-btn:active {
    transform: translate3d(0, -2px, 0);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Footer */
.main-footer {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: white;
    padding: 5rem 2rem 2rem;
    z-index: 10;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.footer-links,
.footer-contact,
.footer-legal {
    display: flex;
    flex-direction: column;
}

.footer-links h5,
.footer-contact h5,
.footer-legal h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-links ul,
.footer-contact ul,
.footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li,
.footer-contact li,
.footer-legal li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-contact svg,
.footer-legal svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span,
.footer-legal li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 3rem 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 968px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

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

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-title-main {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: 3px;
    }

    .hero-title-sub {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }

    .hero-divider {
        height: 40px;
        margin: 1.5rem auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }

    .hero-scroll-indicator {
        margin-top: 2rem;
    }

    .about, .services, .contact {
        padding: 6rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .about-header {
        margin-bottom: 4rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .feature-number {
        font-size: 2.5rem;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        height: 500px;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        height: 500px;
        min-height: 500px;
    }

    .map-overlay-card {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin-bottom: 2rem;
        padding: 2rem;
    }

    .contact-form-wrapper {
        min-height: auto;
    }

    .contact-info-section {
        gap: 1.25rem;
    }

    .info-card {
        padding: 1.5rem 1.25rem;
    }

    .info-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }

    .info-icon {
        width: 22px;
        height: 22px;
    }

    .info-card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .info-card p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .info-card a {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .submit-btn {
        padding: 1.1rem 2rem;
        font-size: 0.9rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links,
    .footer-contact,
    .footer-legal {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll animations - optimized for performance */
.scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
