/* --- Variables & Reset --- */
:root {
    --primary-gold: #d4a373;
    --secondary-pink: #cbbcb7;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-cream: #fdfbf7;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}

/* Comprehensive tap highlight removal for all elements */
*,
*::before,
*::after {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

/* Remove all touch highlights on interactive elements */
a,
button,
input,
select,
textarea,
label,
img,
div,
span,
nav,
header,
footer,
section,
article,
aside,
main,
figure,
figcaption,
[role="button"],
[onclick],
[tabindex] {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    outline: none !important;
}

/* Disable text selection highlight completely */
::selection {
    background: transparent;
    color: inherit;
}

::-moz-selection {
    background: transparent;
    color: inherit;
}

/* Prevent selection on images, logos, and non-text elements */
img,
.logo,
.navbar,
.hero,
.gallery-item,
.gallery-card,
button,
.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Remove blue focus ring on all interactive elements */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- Navbar --- */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    box-sizing: border-box;
    overflow: hidden;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Increased from 40px */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-socials a {
    color: var(--text-dark);
    font-size: 1.5rem;
    transition: 0.3s;
}

.nav-socials a:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    outline: none !important;
    background: transparent;
    border: none;
}

/* --- Hero Section --- */
.mobile-nav-actions {
    display: none;
}

.hero {
    height: 100vh;
    min-height: 600px;
    background: url('images/(9).jpg') no-repeat center center/cover fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 10%;
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.1;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-outline {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

/* --- Intro Section (NEW) --- */
.intro-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #faf8f5 100%);
    overflow: visible;
    /* Allow shadows to show */
}

.intro-text-top {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.intro-text-top .aesthetic-subtitle {
    color: var(--text-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-heading);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}



.intro-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    margin-top: 20px;
}

.intro-image {
    width: 100%;
    max-width: 750px;
    height: auto;
    aspect-ratio: 3/2;
    overflow: hidden;
    /* Keep hidden for zoom effect */
    border-radius: 4px;
    /* Sharper corners for elegance */
    /* box-shadow removed for simpler look */
    /* The "offset frame" effect */
    transition: all 0.5s ease;
}

.intro-image:hover {
    /* box-shadow removed */
    transform: translateY(-5px);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smoother slow zoom */
}

.intro-image:hover img {
    transform: scale(1.08);
}

/* New Text Content Styles */
.intro-text-content {
    width: 100%;
    max-width: 800px;
    /* Optimal reading width */
    padding: 0 20px;
    text-align: center;
    /* Center the text as requested for better flow */
}

/* Removed modern-heading style as element is deleted */

.modern-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    /* Slightly larger for readability */
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.highlight-text {
    /* Made simple and normal as requested */
    color: inherit;
    font-weight: normal;
}

/* --- Philosophy / Gallery Grid --- */
.philosophy-section {
    padding: 80px 0;
    text-align: center;
}

.cursive-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.philosophy-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 25px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* --- Gallery CTA Section --- */
.gallery-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f4 0%, #ebe6e0 100%);
}

.gallery-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.gallery-cta-content {
    flex: 1;
}

.gallery-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.gallery-cta-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--text-dark);
    color: white;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-gallery:hover {
    background: var(--primary-gold);
    transform: translateX(5px);
}

.btn-gallery i {
    transition: transform 0.3s ease;
}

.btn-gallery:hover i {
    transform: translateX(5px);
}

.gallery-cta-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
    /* Ensure full height if needed */
    aspect-ratio: 1/1;
    /* Make it square if desired for 'neatness', or just let it flow */
    min-width: 180px;
    /* Ensure uniform width */
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Services List --- */
.services-section {
    padding: 80px 0;
}

.service-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.service-item {
    flex: 1;
    display: flex;
    gap: 20px;
}

.service-item .num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #e0e0e0;
    font-weight: bold;
    line-height: 1;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Footer & Misc --- */
.btn-gold {
    background: var(--primary-gold);
    color: white;
    padding: 15px 40px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: #b58b5f;
}

footer {
    background: #111;
    color: #888;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials a {
    margin-left: 20px;
    transition: 0.3s;
}

.socials a:hover {
    color: white;
}

/* --- FAQ Section --- */
/* --- Terms & Conditions Section --- */
.terms-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.text-center {
    text-align: center;
}

.terms-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.tnc-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 1100px;
    /* Increased width for 2 cols */
    margin: 0 auto;
}

.tnc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tnc-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-bottom: none;
    /* Remove borders for grid */
    padding-bottom: 0;
}

/* Removed last-child rule as no longer needed for grid */

.tnc-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.tnc-list li:hover .tnc-icon {
    background: var(--primary-gold);
    color: white;
    transform: rotateY(180deg);
}

.tnc-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tnc-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.tnc-content strong {
    color: var(--primary-gold);
}

/* --- Contact CTA Section --- */
.contact-cta-section {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid #eee;
}

.contact-cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   RESPONSIVE DESIGN (OPTIMAL MOBILE)
========================================= */

@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll !important;
    }

    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .intro-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image {
        width: 100%;
        height: auto;
    }

    .intro-text-content {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .gallery-cta-content {
        order: 1;
    }

    .gallery-cta-desc {
        max-width: 100%;
    }

    .gallery-cta-stats {
        order: 2;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .stat-item {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile */
    .navbar {
        padding: 15px 0;
        width: 100%;
    }

    .container {
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .nav-container {
        padding: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
        position: relative;
        padding: 8px;
        margin-right: 0;
        width: 40px;
        /* Fixed width to prevent shift */
        text-align: center;
    }

    /* New Mobile Actions Wrapper */
    .mobile-nav-actions {
        display: flex;
        align-items: center;
        gap: 20px;
        z-index: 1001;
    }

    .mobile-insta-link {
        font-size: 1.5rem;
        color: var(--text-dark);
        transition: color 0.3s;
    }

    .mobile-insta-link:hover {
        color: var(--primary-gold);
    }

    .logo img {
        height: 35px;
    }

    .nav-socials {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: white;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
        will-change: transform;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%;
        text-align: center;
    }

    @keyframes fadeUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        font-size: 1.2rem;
        color: var(--text-dark);
    }

    /* Hero */
    .hero {
        text-align: left;
        align-items: flex-end;
        padding-bottom: 120px;
        /* Positioned at bottom left */
    }

    .hero-content {
        padding: 0 30px;
        /* Left/Right padding */
        max-width: 100%;
        width: 100%;
    }

    .hero .btn-outline {
        font-size: 0.75rem;
        padding: 10px 20px;
        letter-spacing: 1px;
        border-width: 1px;
    }

    /* Sections Padding */
    .intro-section,
    .philosophy-section,
    .services-section,
    .expertise-section,
    .terms-section,
    .process-section {
        padding: 50px 0;
    }

    /* Service Row */
    .service-row {
        flex-direction: column;
        gap: 30px;
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Terms List Mobile */
    .tnc-wrapper {
        padding: 30px 20px;
    }

    .tnc-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tnc-list li {
        text-align: left;
        /* Kept flex-direction row (default from desktop) or can use column if icon on top preferred. 
                           User prev query set text-align: center and flex-col. Reverting to row for consistency or keeping user preference?
                           Actually, previous mobile query had: flex-direction: column; align-items: center; text-align: center;
                           Let's respect that mobile vertical stack per item is usually nicer for centered icon.
                        */
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .socials a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {

    /* Smaller Screens Optimization */
    .container {
        padding: 0 20px;
    }

    h1 {
        line-height: 1.1;
    }

    .hero h1 {
        font-size: 2.2rem;
    }


    .intro-text-top h2,
    .philosophy-section h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Ensure images don't overflow */
    .intro-image {
        height: auto;
    }

    .gallery-item {
        height: 250px;
    }
}

/* --- Shared Minimal CTA Styles (From Gallery Revamp) --- */
.gallery-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

/* Animated Ambient Circles */
.gallery-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: 50%;
    animation: rotateCircle 30s linear infinite;
    z-index: 0;
}

.gallery-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 163, 115, 0.15);
    border-radius: 50%;
    animation: rotateCircle 25s linear infinite reverse;
    z-index: 0;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.gallery-cta .container {
    position: relative;
    z-index: 1;
}

.gallery-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 25px;
    color: var(--text-dark);
    text-shadow: none;
}

.gallery-cta p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #666;
    line-height: 1.8;
}

/* Gold Button Variant for CTA matches Gallery */
.btn.is-cta-gold {
    display: inline-block;
    padding: 16px 45px;
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
    border-radius: 0;
}

.btn.is-cta-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-gold);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn.is-cta-gold:hover {
    color: white;
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.2);
}

.btn.is-cta-gold:hover::before {
    width: 100%;
}