/* ====================================
   VARIABLES & RESET
   ==================================== */
:root {
    --primary: #c9a96e;
    --primary-light: #dcc596;
    --primary-dark: #a3803f;
    --secondary: #1a1a2e;
    --accent: #c9a96e;
    --text-dark: #f0ece4;
    --text-light: #9e9a92;
    --bg-light: #0c0c14;
    --bg-card: #141422;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(201, 169, 110, 0.15);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ====================================
   NAVIGATION
   ==================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 12, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    padding: 1rem 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(12, 12, 20, 0.95);
    box-shadow: 0 4px 30px rgba(201, 169, 110, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
    width: 100%;
    left: 0;
}

.nav-cta {
    background: var(--primary);
    color: var(--secondary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.25);
    background: var(--primary-light);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(12, 12, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-mobile-toggle {
        display: flex;
    }
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:nth-child(1) {
    background-image:
        linear-gradient(135deg, rgba(12, 12, 20, 0.85), rgba(26, 26, 46, 0.75)),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=1080&fit=crop');
}

.hero-slide:nth-child(2) {
    background-image:
        linear-gradient(135deg, rgba(12, 12, 20, 0.85), rgba(26, 26, 46, 0.75)),
        url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1920&h=1080&fit=crop');
}

.hero-slide:nth-child(3) {
    background-image:
        linear-gradient(135deg, rgba(12, 12, 20, 0.85), rgba(26, 26, 46, 0.75)),
        url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?w=1920&h=1080&fit=crop');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(12, 12, 20, 0.6) 100%);
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: -3s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -6s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    top: 60%;
    right: 10%;
    animation-delay: -9s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    bottom: 30%;
    right: 25%;
    animation-delay: -4s;
    animation-duration: 22s;
}

.particle:nth-child(6) {
    top: 40%;
    left: 5%;
    animation-delay: -7s;
    animation-duration: 17s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -40px) rotate(10deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(15px, -15px) rotate(8deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    opacity: 0.4;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.primary-btn {
    background: var(--primary);
    color: var(--secondary);
}

.primary-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
}

.outline-btn {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.outline-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 40px;
    }

    50% {
        opacity: 1;
        height: 50px;
    }
}

/* ====================================
   STATS BAR
   ==================================== */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(201, 169, 110, 0.15);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ====================================
   COMMON SECTION STYLES
   ==================================== */
.section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: var(--bg-card);
}

.section:nth-child(odd) {
    background: var(--bg-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--primary);
}

.section-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.section-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-content p strong {
    color: var(--primary);
    font-weight: 600;
}

.section-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 0.9rem 2.2rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.section-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.25);
    background: var(--primary-light);
}

/* ====================================
   IMAGE FRAMES
   ==================================== */
.section-image {
    position: relative;
}

.glass-frame {
    position: relative;
    overflow: hidden;
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.glass-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(201, 169, 110, 0.12);
}

.glass-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-rounded .glass-frame {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 4/3;
}

.image-hexagon .glass-frame {
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    width: 100%;
    aspect-ratio: 1;
}

.image-diamond .glass-frame {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    width: 450px;
    height: 450px;
}

.image-octagon .glass-frame {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    width: 100%;
    aspect-ratio: 1;
}

/* ====================================
   EXPERTISE SECTION
   ==================================== */
.section-expertise {
    background: linear-gradient(135deg, #0c0c14 0%, #1a1a2e 100%) !important;
}

.section-expertise .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-expertise .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-expertise .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 20px 50px rgba(201, 169, 110, 0.08);
}

.expertise-card:hover .expertise-line {
    width: 100%;
}

.expertise-icon {
    width: 56px;
    height: 56px;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.expertise-icon svg {
    width: 100%;
    height: 100%;
}

.expertise-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.expertise-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent);
    transition: width 0.6s ease;
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 1.5rem 0;
}

.service-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(201, 169, 110, 0.04);
    padding: 1.3rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(201, 169, 110, 0.08);
    transform: translateX(8px);
    border-color: rgba(201, 169, 110, 0.2);
}

.service-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.service-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.service-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-light);
}

/* ====================================
   TRUST BADGES
   ==================================== */
.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.badge {
    background: rgba(201, 169, 110, 0.08);
    color: var(--primary);
    padding: 0.6rem 1.3rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(201, 169, 110, 0.15);
}

/* ====================================
   TESTIMONIALS SECTION
   ==================================== */
.section-testimonials {
    background: linear-gradient(135deg, #141422 0%, #1a1a2e 100%) !important;
}

.section-testimonials .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-testimonials .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-testimonials .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ====================================
   CALL TO ACTION / CONTACT
   ==================================== */
.section-cta {
    background: linear-gradient(135deg, #0c0c14 0%, #1a1a2e 50%, #0c0c14 100%) !important;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.cta-text .section-label {
    color: var(--primary);
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ====================================
   FORM STYLES
   ==================================== */
.glass-form {
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23c9a96e'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #1a1a2e;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(201, 169, 110, 0.04);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
    background: var(--primary-light);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    display: block;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: #06060c;
    color: var(--text-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: var(--primary);
}

.footer-left p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-right {
    text-align: right;
}

.footer-right p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
}

.footer-quote {
    font-style: italic;
    color: var(--primary);
    font-size: 0.95rem;
    opacity: 0.7;
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
[data-animate] {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="slide-left"] {
    transform: translateX(-60px);
}

[data-animate="slide-right"] {
    transform: translateX(60px);
}

[data-animate="scale-in"] {
    transform: scale(0.88);
}

[data-animate="fade"] {
    transform: scale(0.96);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate].animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger delay for cards */
[data-animate][style*="--delay"] {
    transition-delay: var(--delay);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    .section-grid {
        gap: 3rem;
    }

    .cta-content {
        gap: 3rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-diamond .glass-frame {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section-grid,
    .section-grid.reverse,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-image {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .image-diamond .glass-frame {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .section-content h2 {
        font-size: 1.8rem;
    }

    .glass-form {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}