/* =========================================
   GLOBAL STYLES & VARIABLES (ARJAN Redesign)
   ========================================= */
:root {
    /* ARJAN Color Palette */
    --color-bg-primary: #FAF5F2;
    /* Light Pinkish Beige */
    --color-bg-secondary: #F4EBE8;
    /* Slightly darker beige for sections */
    --color-bg-card: #FFFFFF;
    /* White for cards */

    --color-text-primary: #863f1d;
    /* Deep Warm Brown */
    --color-text-secondary: #863f1d;
    /* Muted Brown/Grey */

    --color-accent: #6B4242;
    /* Deep Maroon/Terra-cotta */
    --color-accent-hover: #523030;
    /* Darker Maroon */

    --color-gold: #BC9B82;
    /* Soft Gold/Bronze */
    --color-border: #E8DAD6;
    /* Soft border color */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-logo: 'Playfair Display', serif;
    /* Or maybe Cinzel if we want that sharp look */
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
}


/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;

    /* Luxury background */
    background-color: #FAF5F2;
    background-image: url("../images/luxury-bg.png");
    background-repeat: repeat;
    background-size: auto;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-weight: 600;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 40px 0 10px;
}


.section-title {
    font-size: 2.5rem;
    color: var(--color-accent);
    /* Maroon headings often used in this style */
    text-align: center;
    /* margin-bottom: 10px; */
}

.section:last-of-type .section-subtitle {
    margin-bottom: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* BUTTONS */
.btn {

    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    /* Pill shape */
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #863f1d;
    color: #fff;
    border: 1px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(107, 66, 66, 0.2);
}

/* =========================================
   PREMIUM CONTACT FORM STYLES
   ========================================= */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 8px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Modern Input Style */
.form-group input,
.form-group textarea {
    padding: 15px 0;
    /* Bottom border style */
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1.1rem;
    background-color: transparent;
    transition: border-color 0.4s ease, background-size 0.4s ease;
    border-radius: 0;
    /* Remove default radius */
}

/* Animated Bottom Border highlight */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
    background: linear-gradient(to bottom, transparent 95%, rgba(134, 63, 29, 0.05) 100%);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
    font-weight: 300;
}

/* Button Alignment */
.contact-form button {
    align-self: flex-start;
    margin-top: 15px;
    padding-left: 40px;
    padding-right: 40px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
        /* Less padding on mobile */
        gap: 20px;
    }

    .contact-form button {
        width: 100%;
        /* Full width button on mobile */
        text-align: center;
    }
}


.btn-primary:hover {
    background-color: #fcefeb;
    color: #863f1d;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-text-primary);
}

.btn-secondary:hover {
    background-color: var(--color-text-primary);
    color: #fff;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fcefeb;
    /* Transparent Pinkish Beige */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: padding 0.3s;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Cinzel', serif;
    /* Sharp serif for ARJAN */
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #863f1d;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-primary);
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    cursor: pointer;
    margin-left: auto;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #fcefeb;
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid #E0E0E0;
    margin-top: 30px;
    padding: 14px 0;
}

.footer-bottom-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 0.85rem;
    color: #999;
}

.footer-credit {
    color: #863f1d;
    /* brand brown */
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    position: relative;
}

.footer-credit::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #bc9b82;
    /* soft gold */
    transition: width 0.3s ease;
}

.footer-credit:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}


/* Responsive */
@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 24px 20px;

        background-color: rgba(252, 239, 235, 0.65);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;

        transition:
            opacity 0.4s ease,
            transform 0.4s ease;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-link {
        padding: 12px 0;
        font-size: 1rem;
    }

    .menu-toggle {
        display: block;
    }
}

.nav-menu.active .nav-link {
    animation: fadeSlide 0.4s ease forwards;
}

.nav-menu.active .nav-link:nth-child(1) {
    animation-delay: 0.05s;
}

.nav-menu.active .nav-link:nth-child(2) {
    animation-delay: 0.1s;
}

.nav-menu.active .nav-link:nth-child(3) {
    animation-delay: 0.15s;
}

.nav-menu.active .nav-link:nth-child(4) {
    animation-delay: 0.2s;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   HOME PAGE STYLES (Previously index.css)
   ========================================= */

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: url("../images/interiorherosection.png") no-repeat right center;
    background-size: cover;
}

@media (max-width: 768px) {
    .hero-section {
        background-position: center;
        padding: 120px 0 60px;
    }
}

.hero-container {
    width: 100%;
}

.hero-content {
    max-width: 520px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.25;
    color: #863f1d;
    margin-bottom: 18px;
}

.hero-desc {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: #863f1d;
    line-height: 1.6;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 18px;
}

.hero-btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Filled button (maroon) */
.primary-btn {
    background-color: #863f1d;
    color: #fcefeb;
    border: 1px solid #863f1d;
}

.primary-btn:hover {
    background-color: #fff;
    color: #863f1d;
}

/* Outline button */
.outline-btn {
    background-color: transparent;
    color: #863f1d;
    border: 1px solid #70594e;
}

.outline-btn:hover {
    background-color: #863f1d;
    color: #fff;
}



.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
    /* Ensure substantial height */
}

/* ABOUT SUMMARY */


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Logo */
.logo-icon {
    width: 59px;
    /* bigger */
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    /* makes the image round */
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
}



/* Swap order visually if needed, but HTML order is nice */
/* Swap order visually if needed, but HTML order is nice */
/* .about-grid {} removed empty rule */

.sub-heading {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.about-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.about-text-side p {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-image-side img {
    border-radius: var(--radius-md);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Hover Animation: Zoom In + Lift */
.about-image-side img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 60px rgba(134, 63, 29, 0.15);
}

/* Click Animation: Press Down */
.about-image-side img:active {
    transform: scale(0.98);
}

/* FEATURED PROJECTS */


/* Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Project Card – Luxury Base */
.project-card {
    background-color: transparent;
    border-radius: var(--radius-md);
    padding: 18px;
    transition:
        background-color 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

/* LIGHT GOLD LUXURY HOVER */
.project-card:hover {
    background-color: #f6efe9;
    /* soft champagne gold */
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(134, 63, 29, 0.12);
}

/* Image */
.p-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 4 / 3;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Soft image zoom */
.project-card:hover .p-img img {
    transform: scale(1.04);
}

/* Text */
.p-info h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--color-accent);
}

.p-info p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    opacity: 0.9;
}

/* Mobile safety */
@media (hover: none) {
    .project-card:hover {
        background-color: transparent;
        transform: none;
        box-shadow: none;
    }
}

/* Mobile tap active state */
.project-card.active {
    background-color: #f6efe9;
    /* same luxury gold */
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(134, 63, 29, 0.12);
}

.project-card.active .p-img img {
    transform: scale(1.04);
}

/* SERVICES BOX GRID */


.services-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.svc-card {
    position: relative;
    background-color: #FFFBF9;
    padding: 30px;
    border: 1px solid #F0E5E0;
    border-radius: var(--radius-md);
    transition:
        background-color 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

/* Luxury hover background */
.svc-card:hover {
    background-color: #f6efe9;
    /* soft champagne gold */
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(134, 63, 29, 0.12);
}



.svc-icon {
    font-size: 2rem;
    background-color: #FDF2F2;
    padding: 10px;
    border-radius: 50%;
    line-height: 1;
}

.svc-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.svc-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* WHY US & TESTIMONIALS */

.why-arjan {
    position: relative;
}


.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.heading-left {
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: 30px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--color-text-primary);
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.testimonial-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: #FFF;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #F0E5E0;
}

.stars {
    color: var(--color-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.team-img-wrapper img {
    border-radius: var(--radius-md);
    max-height: 300px;
    object-fit: cover;
    width: 100%;
}

/* Responsive */
@media (max-width: 900px) {

    .hero-container,
    .about-grid,
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }


    .hero-title {
        font-size: 2.5rem;
    }
}


.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 22px;
}

/* Icon container */
.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg,
            #f2e5d9,
            #e6d3c2);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.6),
        0 6px 18px rgba(134, 63, 29, 0.18);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

/* Hover = luxury lift */
/* SOCIAL ICON WRAPPER */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 22px;
}

/* ICON CIRCLE */
.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;

    background: linear-gradient(145deg,
            #f4e9df,
            #e7d2bf);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.6),
        0 6px 18px rgba(134, 63, 29, 0.18);

    transition:
        background 0.4s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* 🔥 HOVER BACKGROUND CHANGE */
.footer-social a:hover {
    background: linear-gradient(145deg,
            #bc9b82,
            /* luxury gold */
            #a88367);
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(134, 63, 29, 0.35);
}

/* SVG ICON BASE */
.footer-social svg {
    width: 20px;
    height: 20px;
    stroke: #863f1d;
    stroke-width: 1.9;
    fill: none;
    transition: stroke 0.35s ease, fill 0.35s ease;
}

/* ICON COLOR ON HOVER (WHITE = LUXURY CONTRAST) */
.footer-social a:hover svg {
    stroke: #ffffff;
}

/* Facebook filled style */
.footer-social .fb svg {
    fill: #863f1d;
    stroke: none;
}

.footer-social .fb:hover svg {
    fill: #ffffff;
}


/* =========================================
   FOOTER CTA BUTTON – FORCE TEXT VISIBILITY
   ========================================= */

.footer-cta-btn {
    display: inline-block;

    padding: 14px 30px;
    border-radius: 30px;

    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;

    background-color: #863f1d;

    /* FORCE OVERRIDE */
    color: #ffffff !important;

    border: 1px solid #863f1d;

    box-shadow:
        0 6px 20px rgba(134, 63, 29, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transition: all 0.3s ease;
}

/* Hover */
.footer-cta-btn:hover {
    background-color: #f6efe9;

    /* FORCE OVERRIDE */
    color: #863f1d !important;

    transform: translateY(-3px);

    box-shadow:
        0 12px 32px rgba(134, 63, 29, 0.4);
}


/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.35);
}

/* Modal Styles */
.modal-content {
    background: transparent !important;
    border: none !important;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.btn-close-white:hover {
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

#modalTitle {
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-img {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .portfolio-img {
        height: 220px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 8px;
        margin: 0 3px 8px;
    }

    .portfolio-card-content {
        padding: 20px;
    }

    .portfolio-card-content h4 {
        font-size: 1.2rem;
    }

    #modalTitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .portfolio-img {
        height: 200px;
    }

    .portfolio-card-content {
        padding: 16px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
}

/* =========================================
   GLOBAL PREMIUM COMPONENTS
   ========================================= */

/* GLOBAL PAGE HEADER (Hero) 
   Applied to Portfolio, Services, About, Contact
*/
.page-header {
    background-color: var(--color-bg-secondary);
    padding: 220px 0 120px;
    /* Taller hero for impact */
    text-align: center;
    position: relative;
    overflow: hidden;
    /* LIGHTER Overlay based on feedback */
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)), url('../images/project-residential.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: background 0.5s ease;
}

/* Subtle Zoom Animation for Background */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 0;
    animation: heroZoom 20s infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.page-header .container {
    position: relative;
    z-index: 2;
    /* Ensure text is above background animation */
}

.page-header h1 {
    font-size: 4rem;
    /* Larger title */
    margin-bottom: 20px;
    color: #ffffff;
    /* Pure white */
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    /* Strong shadow for readability on lighter bg */
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.2s;
    transition: text-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
}

/* Text Glow on Hover + Lift */
.page-header h1:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(184, 134, 11, 0.8);
    transform: translateY(-5px);
}

.page-header p {
    font-size: 1.3rem;
    color: #f0f0f0;
    /* Bright grey/white */
    font-family: var(--font-heading);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards 0.5s;
    border-left: 4px solid var(--color-gold);
    /* Thicker accent */
    padding-left: 20px;
    display: inline-block;
    text-align: left;
    backdrop-filter: blur(3px);
    /* Glass backing for text */
}

/* Animations Keyframes (Global) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Directional Reveals */
/* Base Reveal Item (Must start hidden) */
.reveal-item {
    opacity: 0;
    transition: all 1s ease;
    /* Global transition for reveals */
}

.reveal-item.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
}

/* Directional Reveals */
.reveal-item.slide-left {
    transform: translate3d(-50px, 0, 0);
}

.reveal-item.slide-right {
    transform: translate3d(50px, 0, 0);
}

.reveal-item.slide-up {
    transform: translate3d(0, 50px, 0);
}

.reveal-item.slide-left.reveal-visible,
.reveal-item.slide-right.reveal-visible,
.reveal-item.slide-up.reveal-visible {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

/* Navbar Animation */
.nav-menu li {
    opacity: 0;
    animation: slideInDown 0.5s ease forwards;
}

.nav-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-menu li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-menu li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-menu li:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-menu li:nth-child(5) {
    animation-delay: 0.5s;
}

.nav-menu li:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Footer Animations */
.footer-col {
    /* opacity: 0;  <-- Removed to prevent invisible content if JS misses it */
    /* transform: translateY(20px); <-- Let .reveal-item handle this */
    transition: all 0.8s ease;
}

/* When reveal-visible class is added via JS observer */
.footer-col.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Social Icon Bounce */
.footer-social {
    display: flex;
    gap: 15px;
    /* Space between icons */
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.2);
}

.footer-social .ig {
    color: #E1306C;
}

.footer-social .fb {
    color: #4267B2;
}

.footer-social .mail {
    color: #D44638;
}

/* Enhanced Footer CTA Button */
.footer-cta-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-cta-btn:hover::before {
    left: 100%;
}

/* =========================================
   LUXURY CTA (Services Section)
   ========================================= */

.luxury-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    /* Medium weight typography */
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    /* Clean minimal text */
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    /* Space for underline */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth easing */
    letter-spacing: 0.5px;
    /* Subtle spacing */
}

/* Hover State: Text Color */
.luxury-cta:hover {
    color: var(--color-text-primary);
    /* Exact brand color (#863f1d) */
    transform: translateY(-3px);
    /* Slight upward movement */
}

/* Animated Underline */
.luxury-cta::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    /* Elegant thin line */
    background-color: var(--color-text-primary);
    /* Brand color */
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-cta:hover::after {
    width: 100%;
    /* Expands left to right */
}

/* Arrow Icon */
.cta-icon {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 1.2rem;
    line-height: 1;
}

.luxury-cta:hover .cta-icon {
    transform: translateX(6px);
    /* Sliding arrow */
}

.about-image-side {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px; /* optional - premium look */
}

.about-image-side video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}