/*
|--------------------------------------------------------------------------
| GlamourLash Norwood - Rose Gold Elegance Theme (FIXED)
|--------------------------------------------------------------------------
*/

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */

:root {
    /* Primary Colors */
    --color-primary: #B76E79;          /* Rose Gold */
    --color-primary-light: #D4A5A5;    /* Light Rose */
    --color-primary-dark: #8B4D57;     /* Dark Rose */

    /* Gold Colors */
    --color-gold: #C9A86C;             /* Gold */
    --color-gold-light: #E8D5B5;       /* Light Gold */
    --color-gold-dark: #A68B4B;        /* Dark Gold */
    --color-gold-shine: #D4AF37;       /* Shiny Gold */

    /* Background Colors */
    --color-bg-primary: #FDF8F5;       /* Warm White */
    --color-bg-secondary: #FFF5EE;     /* Seashell */
    --color-bg-tertiary: #FAF0E6;      /* Linen */
    --color-bg-card: #FFFFFF;          /* White */

    /* Text Colors */
    --color-text-dark: #1a1a1a;        /* Very Dark - for navbar */
    --color-text-primary: #2C2C2C;     /* Dark Gray */
    --color-text-secondary: #4a4a4a;   /* Medium Gray - darker now */
    --color-text-light: #6B6B6B;       /* Light Gray */
    --color-text-white: #FFFFFF;       /* White */

    /* Gradient Colors */
    --gradient-hero: linear-gradient(135deg, #FDF8F5 0%, #FDEEF0 50%, #FFF5EE 100%);
    --gradient-rose: linear-gradient(135deg, #B76E79 0%, #D4A5A5 100%);
    --gradient-gold: linear-gradient(135deg, #C9A86C 0%, #D4AF37 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #FDF8F5 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
    --spacing-2xl: 100px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.8s ease;

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(183, 110, 121, 0.1);
    --shadow-medium: 0 15px 50px rgba(183, 110, 121, 0.15);
    --shadow-card: 0 5px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(183, 110, 121, 0.2);
    --shadow-navbar: 0 5px 30px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;

    /* Z-Index */
    --z-background: 0;
    --z-overlay: 1;
    --z-decoration: 2;
    --z-content: 10;
    --z-navbar: 1000;
}

/* ==========================================================================
   2. Reset & Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-dark);
}

/* ==========================================================================
   4. Components - Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 168, 108, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
}

.btn-rose {
    background: var(--gradient-rose);
    color: var(--color-text-white);
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 15px 30px;
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 168, 108, 0.4);
}

/* ==========================================================================
   5. Components - Section Header
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header__subtitle {
    display: inline-block;
    color: var(--color-gold-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.section-header__subtitle::before,
.section-header__subtitle::after {
    content: '✦';
    margin: 0 15px;
    color: var(--color-gold);
}

.section-header__title {
    color: var(--color-text-dark);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
}

/* ==========================================================================
   6. Components - Icon Box
   ========================================================================== */

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
}

.icon-box i {
    color: var(--color-text-dark);
    font-size: 24px;
}

.icon-box--large {
    width: 90px;
    height: 90px;
}

.icon-box--large i {
    font-size: 32px;
}

.icon-box--outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    box-shadow: none;
}

.icon-box--outline i {
    color: var(--color-gold-dark);
}

/* ==========================================================================
   7. Components - Cards
   ========================================================================== */

.card {
    background: var(--color-bg-card);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 168, 108, 0.4);
}

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

/* ==========================================================================
   8. Components - Social Links
   ========================================================================== */

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-text-dark);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

/* ==========================================================================
   9. Animations
   ========================================================================== */

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
.floating {
    animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   10. Navbar - UPDATED WITH LARGER LOGO
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    padding: 10px 60px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================
   LOGO CONTAINER - Logo + NORWOOD Text
   ============================================ */

/* ============================================
   LOGO CONTAINER - Logo + NORWOOD Text
   ============================================ */

.navbar__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar__brand:hover {
    transform: scale(1.02);
}

/* Logo Image */
.navbar__logo {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar__logo {
    height: 70px;
}

/* NORWOOD Text - MORE SPACING */
.navbar__location {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #A0522D;
    text-transform: uppercase;
    margin-top: 1px;  /* Added more space */
    padding-top: 3px; /* Extra padding */
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar__location {
    font-size: 10px;
    letter-spacing: 4px;
    margin-top: 5px;
    padding-top: 3px;
}


/* ============================================
   NAVIGATION MENU
   ============================================ */

.navbar__menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar__link {
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #A0522D, #C9A86C);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar__link:hover {
    color: #A0522D;
}

.navbar__link:hover::after {
    width: 100%;
}

/* Book Now Button */
.navbar__book-btn {
    background: linear-gradient(135deg, #A0522D 0%, #C9A86C 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(160, 82, 45, 0.3);
    transition: all 0.3s ease;
}

.navbar__book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 82, 45, 0.4);
    color: #ffffff;
}

/* ============================================
   MOBILE TOGGLE
   ============================================ */

.navbar__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px;
}

.navbar__toggle-bar {
    width: 28px;
    height: 3px;
    background: #A0522D;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    .navbar {
        padding: 15px 40px;
    }

    .navbar__menu {
        gap: 30px;
    }

    .navbar__logo {
        height: 80px;
    }

    .navbar.scrolled .navbar__logo {
        height: 65px;
    }
    .navbar__location {
        margin-top: 4px;
        font-size: 10px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 12px 30px;
    }

    .navbar__logo {
        height: 75px;
    }

    .navbar.scrolled .navbar__logo {
        height: 60px;
    }

    .navbar__location {
        margin-top: 5px;
        font-size: 10px;
        letter-spacing: 4px;
    }

    .navbar__menu {
        gap: 25px;
    }

    .navbar__link {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }

    .navbar__logo {
        height: 65px;
    }

    .navbar.scrolled .navbar__logo {
        height: 55px;
    }

    .navbar__location {
        margin-top: 1px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .navbar.scrolled .navbar__location {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .navbar__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar__menu.active {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__book-btn {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .navbar__logo {
        height: 55px;
    }

    .navbar.scrolled .navbar__logo {
        height: 50px;
    }

     .navbar__location {
        margin-top: 3px;
        font-size: 8px;
        letter-spacing: 2px;
    }
}
/* ==========================================================================
   11. Hero Section - BETTER TEXT VISIBILITY
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

/* Background Image */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4; /* Make image more faded */
}

/* White Overlay - Makes text more readable */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 250, 245, 0.7) 30%,
        rgba(255, 248, 240, 0.65) 50%,
        rgba(255, 250, 245, 0.7) 70%,
        rgba(255, 255, 255, 0.75) 100%
    );
    z-index: 1;
}

/* Center Glow - Soft gold tint in middle */
.hero__gold-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 250, 240, 0.7) 30%,
        rgba(232, 213, 181, 0.3) 50%,
        transparent 70%
    );
    z-index: 2;
    pointer-events: none;
}

/* Decorative Shapes */
.hero__decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
}

.hero__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: pulse 4s ease-in-out infinite;
}

.hero__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: pulse 5s ease-in-out infinite 1s;
}

.hero__shape--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.12) 0%, transparent 70%);
    top: 35%;
    left: 8%;
    animation: float 8s ease-in-out infinite;
}

/* Hero Content */
.hero__content {
    text-align: center;
    z-index: 10;
    padding: 0 var(--spacing-md);
    max-width: 950px;
    position: relative;
}

/* ============================================
   TITLE STYLES - BRIGHT & VISIBLE
   ============================================ */

.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    animation: fadeInUp 1s ease 0.3s both;
    line-height: 1.1;
}

/* GLAMOUR - Bright Gold */
.hero__title .gold {
    color: #B8860B;
    text-shadow:
        2px 2px 0px rgba(255, 255, 255, 1),
        0 0 30px rgba(184, 134, 11, 0.3);
}

/* LASH - Dark Black */
.hero__title .dark {
    color: #000000;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
}

/* NORWOOD */
.hero__norwood {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 20px;
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}

/* Subtitle - Beauty Lounge */
.hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 8px;
    color: #8B6914;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease 0.5s both;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}

/* Divider Line */
.hero__divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
    margin: 0 auto var(--spacing-lg);
    border-radius: 3px;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Tagline - Description */
.hero__tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #1a1a1a;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.9;
    font-weight: 500;
    animation: fadeInUp 1s ease 0.7s both;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* CTA Buttons */
.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero__cta .btn-primary {
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

.hero__cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.5);
}

.hero__cta .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: 2px solid #B8860B;
    font-weight: 700;
}

.hero__cta .btn-secondary:hover {
    background: #B8860B;
    color: #ffffff;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero__scroll i {
    color: #B8860B;
    font-size: 32px;
    filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.4));
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero__title {
        letter-spacing: 6px;
    }

    .hero__norwood {
        letter-spacing: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }

    .hero__title {
        letter-spacing: 4px;
    }

    .hero__norwood {
        letter-spacing: 10px;
        font-size: 1.1rem;
    }

    .hero__subtitle {
        letter-spacing: 5px;
    }

    .hero__cta {
        flex-direction: column;
        padding: 0 var(--spacing-md);
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__shape--1,
    .hero__shape--2,
    .hero__shape--3 {
        display: none;
    }

    .hero__gold-glow {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        letter-spacing: 2px;
    }

    .hero__norwood {
        letter-spacing: 6px;
    }

    .hero__subtitle {
        letter-spacing: 3px;
    }

    .hero__divider {
        width: 100px;
    }
}
/* ==========================================================================
   12. About Section
   ========================================================================== */

/* ==========================================================================
   12. About Section - FIXED IMAGE
   ========================================================================== */

.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-2xl) 10%;
    background: var(--color-bg-card);
    position: relative;
    overflow: hidden;
}

/* Decorative Background */
.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ============================================
   IMAGE CONTAINER - FIXED
   ============================================ */

.about__image {
    position: relative;
    width: 100%;
}

.about__image-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(201, 168, 108, 0.2);
}

/* Decorative Border */
.about__image-frame::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(201, 168, 108, 0.5);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

/* Gold Corner Accents */
.about__image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 4px solid transparent;
    border-image: linear-gradient(135deg, #B8860B 0%, transparent 30%, transparent 70%, #B8860B 100%) 1;
    z-index: 3;
    pointer-events: none;
}

/* THE IMAGE - Responsive & Fitted */
.about__image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.about__image-frame:hover img {
    transform: scale(1.03);
}

/* Fixed Aspect Ratio Option (if needed) */
.about__image-frame--fixed {
    aspect-ratio: 4 / 5;
}

.about__image-frame--fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focus on top of image (face) */
}

/* Square Aspect Ratio Option */
.about__image-frame--square {
    aspect-ratio: 1 / 1;
}

.about__image-frame--square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Landscape Aspect Ratio Option */
.about__image-frame--landscape {
    aspect-ratio: 16 / 10;
}

.about__image-frame--landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   FLOATING BADGE
   ============================================ */

.about__badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.about__badge-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.about__badge-text {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CONTENT SECTION
   ============================================ */

.about__content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.about__content h2 span {
    color: #B8860B;
}

.about__content > p {
    color: #4a4a4a;
    line-height: 2;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-md);
}

/* Features Grid */
.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: var(--spacing-md);
    background: #FDF8F5;
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 108, 0.2);
    transition: all 0.3s ease;
}

.about__feature:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.15);
    border-color: #B8860B;
}

.about__feature i {
    color: #B8860B;
    font-size: 22px;
}

.about__feature span {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .about__container {
        gap: 50px;
    }

    .about__badge {
        width: 110px;
        height: 110px;
        bottom: -15px;
        right: -15px;
    }

    .about__badge-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 1024px) {
    .about {
        padding: var(--spacing-xl) 8%;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__image {
        order: -1;
        max-width: 550px;
        margin: 0 auto;
    }

    .about__badge {
        bottom: -20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: var(--spacing-xl) 5%;
        min-height: auto;
    }

    .about__image {
        max-width: 100%;
    }

    .about__image-frame {
        border-radius: 15px;
    }

    .about__image-frame::before {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .about__badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: 10px;
    }

    .about__badge-number {
        font-size: 1.5rem;
    }

    .about__badge-text {
        font-size: 10px;
    }

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

    .about__content h2 {
        text-align: center;
    }

    .about__content > p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about__image-frame::before {
        display: none;
    }

    .about__badge {
        width: 90px;
        height: 90px;
        right: 5px;
        bottom: -10px;
    }

    .about__badge-number {
        font-size: 1.3rem;
    }
}
/* ==========================================================================
   13. Services Section
   ========================================================================== */

.services {
    min-height: 100vh;
    padding: var(--spacing-2xl) 10%;
    background: var(--color-bg-secondary);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Decorative Pattern */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--color-gold-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services__card {
    padding: 50px 35px;
    text-align: center;
    background: var(--color-bg-card);
}

.services__card-icon {
    margin: 0 auto var(--spacing-lg);
}

.services__card h3 {
    color: var(--color-text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.services__card p {
    color: var(--color-text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

.services__cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.services__cta p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

/* ==========================================================================
   14. Contact Section
   ========================================================================== */

.contact {
    min-height: 100vh;
    padding: var(--spacing-2xl) 10%;
    background: var(--color-bg-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-secondary) 0%, rgba(232, 213, 181, 0.2) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact__info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.contact__info h2 span {
    color: var(--color-gold-dark);
}

.contact__info > p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.contact__item-text h4 {
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact__item-text p,
.contact__item-text a {
    color: var(--color-text-secondary);
    font-size: 15px;
}

.contact__item-text a:hover {
    color: var(--color-gold-dark);
}

.contact__social {
    margin-top: var(--spacing-lg);
}

.contact__map {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 108, 0.2);
}

.contact__map-placeholder {
    text-align: center;
    padding: var(--spacing-lg);
}

.contact__map-placeholder i {
    font-size: 60px;
    color: var(--color-gold);
    opacity: 0.6;
    margin-bottom: var(--spacing-md);
    display: block;
}

.contact__map-placeholder p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

/* ==========================================================================
   15. Footer
   ========================================================================== */

/* ==========================================================================
   15. Footer - WITH DESIGNER CREDIT
   ========================================================================== */

.footer {
    padding: 50px 10% 30px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Top Border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #A0522D, #C9A86C, #A0522D, transparent);
}

/* Footer Container */
.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Brand Section */
.footer__brand {
    text-align: center;
}

.footer__logo {
    height: 70px;
    margin: 0 auto 10px;
    filter: brightness(1.1);
}

.footer__brand-location {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #A0522D;
    text-transform: uppercase;
}

/* Divider */
.footer__divider {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 82, 45, 0.5), transparent);
}

/* Copyright */
.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-align: center;
}

.footer__copyright span {
    color: #C9A86C;
    font-weight: 500;
}

/* ============================================
   DESIGNER CREDIT SECTION
   ============================================ */

.footer__credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(160, 82, 45, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer__credit:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(160, 82, 45, 0.4);
    transform: translateY(-2px);
}

.footer__credit-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.footer__credit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #C9A86C;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer__credit-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A86C;
    transition: width 0.3s ease;
}

.footer__credit-link:hover {
    color: #D4AF37;
}

.footer__credit-link:hover::after {
    width: 100%;
}

/* LinkedIn Icon */
.footer__credit-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer__credit-link:hover i {
    transform: scale(1.2);
}

/* ============================================
   ALTERNATIVE STYLE - More Prominent
   ============================================ */

.footer__credit--prominent {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.1) 0%, rgba(201, 168, 108, 0.1) 100%);
    border: 1px solid rgba(160, 82, 45, 0.3);
    padding: 18px 30px;
}

.footer__credit--prominent .footer__credit-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer__credit--prominent .footer__credit-link {
    color: #D4AF37;
    font-size: 15px;
}

/* ============================================
   SOCIAL LINKS (Optional)
   ============================================ */

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(160, 82, 45, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A86C;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: #A0522D;
    border-color: #A0522D;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .footer {
        padding: 40px 5% 25px;
    }

    .footer__logo {
        height: 60px;
    }

    .footer__credit {
        flex-direction: column;
        gap: 5px;
        padding: 12px 20px;
        border-radius: 15px;
    }

    .footer__credit-text {
        font-size: 12px;
    }

    .footer__credit-link {
        font-size: 13px;
    }

    .footer__copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer__logo {
        height: 50px;
    }

    .footer__brand-location {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .footer__credit {
        width: 100%;
        margin: 0 20px;
    }
}

/* ==========================================================================
   16. Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
    :root {
        --spacing-xl: 60px;
        --spacing-2xl: 80px;
    }

    .navbar {
        padding: 15px 30px;
    }

    .navbar__logo {
        height: 65px;
    }

    .navbar.scrolled .navbar__logo {
        height: 55px;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .contact::before {
        display: none;
    }

    .contact__map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 40px;
        --spacing-2xl: 60px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .navbar__logo {
        height: 55px;
    }

    .navbar.scrolled .navbar__logo {
        height: 50px;
    }

    .navbar__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        text-align: center;
        box-shadow: var(--shadow-navbar);
    }

    .navbar__menu.active {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__book-btn {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero__title {
        letter-spacing: 5px;
    }

    .hero__subtitle {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }

    .hero__cta {
        flex-direction: column;
        padding: 0 var(--spacing-md);
    }

    .hero__cta .btn {
        width: 100%;
    }

    .hero__logo {
        width: 160px;
    }

    .about,
    .services,
    .contact {
        padding: var(--spacing-2xl) 5%;
    }

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

    .about__badge {
        width: 110px;
        height: 110px;
        bottom: -10px;
        right: -10px;
    }

    .about__badge-number {
        font-size: 1.8rem;
    }

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

    .services__card {
        padding: 40px 30px;
    }

    .btn {
        padding: 16px 35px;
        font-size: 11px;
    }

    .footer {
        padding: var(--spacing-lg) 5%;
    }

    .hero__shape--1,
    .hero__shape--2,
    .hero__shape--3 {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 30px;
        --spacing-xl: 30px;
        --spacing-2xl: 50px;
    }

    .navbar__logo {
        height: 50px;
    }

    .hero__logo {
        width: 140px;
    }

    .hero__title {
        letter-spacing: 3px;
    }
}
