/* ============================================================
   Yuhaa Aari Work – Main Stylesheet
   Theme: Indian Cultural Luxury Aesthetic
   ============================================================ */

/* ─── Google Fonts ───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
    --maroon: #800020;
    --maroon-dark: #5a0016;
    --maroon-light: #9c1a34;
    --gold: #D4AF37;
    --gold-light: #e8cb6b;
    --gold-dark: #a88a20;
    --pink: #C2185B;
    --pink-light: #e91e8c;
    --peacock: #006B6B;
    --peacock-light: #008080;
    --saffron: #FF6F00;
    --saffron-light: #FF8F00;
    --beige: #FDF6EC;
    --beige-dark: #F0E6D0;
    --cream: #FAF3E0;
    --text-dark: #2C1810;
    --text-mid: #5A3A2C;
    --text-light: #8B6F5E;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(128, 0, 32, 0.10);
    --shadow-md: 0 6px 24px rgba(128, 0, 32, 0.15);
    --shadow-lg: 0 12px 40px rgba(128, 0, 32, 0.20);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 6px;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--beige);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--maroon);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

ul {
    list-style: none;
}

/* ─── Typography ─────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--maroon);
    line-height: 1.25;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-mid);
}

/* ─── Section Wrapper ────────────────────────────────────── */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--cream);
}

/* ─── Section Heading ────────────────────────────────────── */
.section-heading {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading .subtitle {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
}

.section-heading h2 {
    margin-bottom: 16px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 16px auto 0;
}

.section-divider .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}

.section-divider .line.right {
    background: linear-gradient(to left, transparent, var(--gold));
}

.section-divider .ornament {
    color: var(--gold);
    font-size: 1.3rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
    color: var(--white);
    border-color: var(--maroon);
    box-shadow: 0 4px 18px rgba(128, 0, 32, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(128, 0, 32, 0.40);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--maroon-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--maroon-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--maroon);
    border-color: var(--maroon);
}

.btn-outline:hover {
    background: var(--maroon);
    color: var(--white);
}

/* ─── Mandala / Watermark Backgrounds ───────────────────── */
.mandala-bg {
    position: relative;
    overflow: hidden;
}

.mandala-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle cx='200' cy='200' r='180' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.18'/%3E%3Ccircle cx='200' cy='200' r='150' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.12'/%3E%3Ccircle cx='200' cy='200' r='90' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.10'/%3E%3Cpath d='M200 20 L220 180 L380 200 L220 220 L200 380 L180 220 L20 200 L180 180 Z' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M200 60 L215 185 L340 200 L215 215 L200 340 L185 215 L60 200 L185 185 Z' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.12'/%3E%3C/svg%3E");
    background-size: 400px 400px;
    background-repeat: repeat;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.mandala-bg>* {
    position: relative;
    z-index: 1;
}

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 243, 224, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 2px 16px rgba(128, 0, 32, 0.08);
    transition: box-shadow var(--transition);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    width: min(90%, 1200px);
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: var(--maroon);
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.navbar-brand .brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 700;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-nav a {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: var(--maroon);
    border-color: var(--gold);
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--maroon);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ─── Mobile Nav ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 2px solid var(--gold);
        flex-direction: column;
        gap: 0;
        padding: 0;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
        z-index: 999;
    }

    .navbar-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar-nav a {
        display: block;
        padding: 16px 24px;
        border-bottom: 1px solid rgba(128, 0, 32, 0.08);
        border-left: none;
    }

    .navbar-cta .btn {
        display: none;
    }
}

/* ─── Hero Section ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 40%, #6B0030 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='%23D4AF37' stroke-width='0.8' stroke-opacity='0.3'/%3E%3Ccircle cx='300' cy='300' r='230' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.25'/%3E%3Ccircle cx='300' cy='300' r='180' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.2'/%3E%3Ccircle cx='300' cy='300' r='130' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M300 20 L330 270 L580 300 L330 330 L300 580 L270 330 L20 300 L270 270 Z' fill='none' stroke='%23D4AF37' stroke-width='0.8' stroke-opacity='0.3'/%3E%3Cpath d='M300 80 L322 278 L520 300 L322 322 L300 520 L278 322 L80 300 L278 278 Z' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.2'/%3E%3Cellipse cx='300' cy='300' rx='260' ry='140' fill='none' stroke='%23D4AF37' stroke-width='0.4' stroke-opacity='0.15'/%3E%3Cellipse cx='300' cy='300' rx='140' ry='260' fill='none' stroke='%23D4AF37' stroke-width='0.4' stroke-opacity='0.15'/%3E%3C/svg%3E");
    background-size: 600px 600px;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.hero-inner {
    width: min(90%, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.hero-content .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 8px;
    font-style: italic;
}

.hero-content h1 span {
    color: var(--gold);
    display: block;
    font-style: normal;
}

.hero-content .hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 20px 0 36px;
    max-width: 440px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-frame {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.hero-frame::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius);
    animation: framePulse 3s ease-in-out infinite alternate;
}

@keyframes framePulse {
    from {
        opacity: 0.4;
        transform: scale(1);
    }

    to {
        opacity: 0.8;
        transform: scale(1.01);
    }
}

.hero-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* ─── Latest Works / Featured ────────────────────────────── */
.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.work-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.work-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-card:hover .work-card-image img {
    transform: scale(1.08);
}

.work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(128, 0, 32, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.work-card:hover .work-card-overlay {
    opacity: 1;
}

.work-card-overlay span {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.work-card-body {
    padding: 18px 20px;
    border-top: 2px solid var(--gold);
}

.work-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--maroon);
}

.work-card-body .category-tag {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ─── Portfolio Grid ─────────────────────────────────────── */
.portfolio-grid {
    columns: 3;
    column-gap: 20px;
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(128, 0, 32, 0.9) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px 16px;
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-overlay h4 {
    color: var(--white);
    font-size: 1rem;
}

/* ─── Category Filter Tabs ───────────────────────────────── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-tab {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid var(--maroon);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--maroon);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--maroon);
    color: var(--white);
}

/* ─── About Section ──────────────────────────────────────── */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.about-image-badge .badge-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--maroon-dark);
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--maroon);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.about-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature-text h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: var(--maroon);
}

.about-feature-text p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ─── Contact Form ───────────────────────────────────────── */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
}

.contact-info-item .icon {
    font-size: 1.4rem;
    color: var(--maroon);
    flex-shrink: 0;
}

.contact-info-item .details strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.contact-info-item .details a,
.contact-info-item .details span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ─── Forms ──────────────────────────────────────────────── */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--gold);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--maroon);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(128, 0, 32, 0.2);
    border-radius: var(--radius-sm);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--beige);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: var(--white);
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-error {
    font-size: 0.78rem;
    color: #c0392b;
    margin-top: 4px;
    display: block;
}

/* ─── Alerts ─────────────────────────────────────────────── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-color: #22c55e;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #ef4444;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border-color: #3b82f6;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, #2C0010 100%);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Ccircle cx='150' cy='150' r='140' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.2'/%3E%3Ccircle cx='150' cy='150' r='100' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.15'/%3E%3C/svg%3E");
    background-size: 300px;
    background-repeat: repeat;
    opacity: 0.5;
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    font-style: italic;
    display: block;
    margin-bottom: 4px;
}

.footer-brand .brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 48px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    border-color: var(--gold);
}

/* ─── WhatsApp Floating Button ───────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    color: var(--white);
    font-size: 1.6rem;
    text-decoration: none;
    animation: waPulse 2.4s ease-in-out infinite;
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.12);
    animation: none;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ─── Call Now Banner ────────────────────────────────────── */
.call-now-bar {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    padding: 14px;
    text-align: center;
}

.call-now-bar a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.call-now-bar a:hover {
    opacity: 0.9;
}

/* ─── Portfolio Single ───────────────────────────────────── */
.gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #1a1a1a;
    margin-bottom: 40px;
}

.gallery-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
}

.gallery-slide img {
    width: 100%;
    height: 520px;
    object-fit: contain;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(128, 0, 32, 0.75);
    color: var(--white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background var(--transition);
}

.gallery-btn:hover {
    background: var(--maroon);
}

.gallery-btn.prev {
    left: 16px;
}

.gallery-btn.next {
    right: 16px;
}

.gallery-dots {
    text-align: center;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.gallery-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Ccircle cx='150' cy='150' r='130' fill='none' stroke='%23D4AF37' stroke-width='0.5' stroke-opacity='0.25'/%3E%3C/svg%3E");
    background-size: 300px;
    opacity: 0.5;
}

.page-hero h1 {
    color: var(--white);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 10px auto 0;
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* ─── Lazy Load ──────────────────────────────────────────── */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

/* ─── Utilities ──────────────────────────────────────────── */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold-dark) !important;
}

.text-maroon {
    color: var(--maroon) !important;
}

.mt-auto {
    margin-top: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-gold {
    background: var(--gold);
    color: var(--maroon-dark);
}

.badge-maroon {
    background: var(--maroon);
    color: var(--white);
}

/* ─── Empty State ────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state p {
    font-size: 1.1rem;
    margin-top: 16px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 60px 0;
        text-align: center;
    }

    .hero-image-side {
        display: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        columns: 2;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 56px 0;
    }

    .latest-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        columns: 1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-slide img {
        height: 280px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── Image Protection (CSS layer) ──────────────────────── */
/* Disables selection highlighting & iOS long-press save menu */
.work-card-image img,
.portfolio-item img,
.gallery-slide img,
.hero-frame img,
.about-image-main {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    /* iOS: disables "Save Image" on long-press */
    -webkit-tap-highlight-color: transparent;
    pointer-events: none;
    /* blocks right-click & drag at CSS level   */
}

/* Re-enable pointer events on <a> wrappers so links still work */
.work-card-image a,
.portfolio-item,
.gallery-btn {
    pointer-events: all;
}

/* ─── Print ──────────────────────────────────────────────── */
@media print {

    .navbar,
    .whatsapp-float,
    .call-now-bar,
    .footer {
        display: none;
    }
}