@import url("https://fonts.googleapis.com/css2?family=Reem+Kufi:wght@400..700&display=swap");
:root {
    --gold-primary: #982b1c;
    --gold-secondary: #800000;
    --gold-accent: #f2e8c6;
    --ivory: #f8f5f0;
    --cream: #f2ede4;
    --charcoal: #1c1b19;
    --taupe: #9c9485;
    --transition-slow: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-medium: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.reem-kufi {
    font-family: "Reem Kufi", sans-serif;
    font-weight: 600;
}
.noto-nastaliq-urdu {
    font-family: "Noto Nastaliq Urdu", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Raleway", sans-serif;
    background-color: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.7;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: "Marcellus", serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.playfair {
    font-family: "Playfair Display", serif;
}

.cormorant {
    font-family: "Cormorant Garamond", serif;
}

.bg-art {
    position: fixed;
    z-index: -1;
    pointer-events: none;
}

.bg-art-1 {
    top: 15%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(198, 166, 100, 0.05) 0%,
        rgba(198, 166, 100, 0) 70%
    );
    border-radius: 50%;
}

.bg-art-2 {
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(198, 166, 100, 0.03) 100%
    );
    transform: rotate(45deg);
}

.bg-art-3 {
    top: 40%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(
        135deg,
        rgba(242, 237, 228, 0.2) 0%,
        rgba(198, 166, 100, 0.05) 100%
    );
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(248, 245, 240, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(198, 166, 100, 0.2);
    border-radius: 50px;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    max-width: 1200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
}

.floating-nav.scrolled {
    top: 20px;
    padding: 15px 35px;
    background: rgba(248, 245, 240, 0.95);
}

.logo {
    font-size: 2.2rem;
    color: var(--charcoal);
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 22px;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-links a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold-primary);
    transition: var(--transition-medium);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-cta {
    background-color: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 12px 28px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition-medium);
    cursor: pointer;
    margin-left: 20px;
}

.nav-cta:hover {
    background-color: var(--gold-primary);
    color: var(--ivory);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(198, 166, 100, 0.15);
}

.hero-section {
    min-height: 110vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
    margin-top: 60px;
}

.hero-content {
    width: 50%;
    z-index: 2;
    padding-right: 60px;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
    color: var(--charcoal);
}

.hero-title span {
    color: var(--gold-primary);
    font-style: italic;
    font-family: "Cormorant Garamond", serif;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--taupe);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-image-container {
    width: 50%;
    height: 85vh;
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    background: url("../images/main.jpg") center/cover no-repeat;
    border-radius: 0 0 0 150px;
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-main-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(248, 245, 240, 0.1) 0%,
        rgba(248, 245, 240, 0) 70%
    );
}

.hero-image-frame {
    position: absolute;
    width: 250px;
    height: 350px;
    border: 12px solid var(--gold-secondary);
    border-radius: 5px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.frame-1 {
    top: -40px;
    right: 50px;
    background: url("../images/frame1.jpg") center/cover no-repeat;
    transform: rotate(-8deg);
}

.frame-2 {
    bottom: -30px;
    left: -40px;
    background: url("../images/frame2.jpg") center/cover no-repeat;
    transform: rotate(5deg);
    border-color: var(--gold-primary);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 4rem;
    color: var(--charcoal);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--gold-primary);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--taupe);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 1px;
}

.collections-section {
    padding: 150px 5% 120px;
    position: relative;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.collection-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4 / 5; /* consistent portrait ratio */
    background-color: var(--cream);
}

.collection-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.collection-item:hover img {
    transform: scale(1.08);
}


.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(28, 27, 25, 0.85), transparent);
    color: var(--ivory);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-medium);
}

.collection-item:hover .collection-overlay {
    transform: translateY(0);
    opacity: 1;
}


.collection-overlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Reem Kufi', serif;
}

.collection-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Experience Section - Parallax */
.experience-section {
    padding: 150px 5%;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url("https://images.unsplash.com/photo-1567401893414-76b7b1e5a7a5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80")
        center/cover no-repeat fixed;
    z-index: -1;
    opacity: 0.15;
}

.experience-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.experience-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4.5rem;
    color: var(--gold-primary);
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--taupe);
}

/* Appointment Section - Elegant Form */
.appointment-section {
    padding: 150px 5% 120px;
    position: relative;
}

.appointment-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.appointment-form {
    flex: 1;
    padding: 80px 60px;
}

.appointment-image {
    flex: 1;
    background: url("../images/consultation.jpg") center/cover no-repeat;
    position: relative;
}

.appointment-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(198, 166, 100, 0.2) 0%,
        rgba(248, 245, 240, 0.1) 100%
    );
}

.form-header {
    margin-bottom: 50px;
}

.form-header h3 {
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.form-header p {
    color: var(--taupe);
    font-size: 1.1rem;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--charcoal);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(156, 148, 133, 0.3);
    border-radius: 8px;
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 5px 15px rgba(198, 166, 100, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--gold-primary);
    color: var(--ivory);
    border: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--gold-secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(198, 166, 100, 0.2);
}

.submit-btn i {
    margin-left: 10px;
    transition: var(--transition-medium);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--charcoal);
    color: var(--taupe);
    padding: 100px 5% 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.footer-column {
    flex: 1;
    padding-right: 40px;
}

.footer-column h4 {
    color: var(--ivory);
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--gold-primary);
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--taupe);
    margin-right: 15px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--gold-accent);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .collection-grid {
        grid-template-rows: repeat(8, 70px);
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        padding-top: 150px;
    }

    .hero-content,
    .hero-image-container {
        width: 100%;
    }

    .hero-image-container {
        height: 60vh;
        margin-top: 60px;
    }

    .collection-grid {
        grid-template-rows: repeat(8, 60px);
        gap: 15px;
    }

    .appointment-container {
        flex-direction: column;
    }

    .appointment-image {
        height: 300px;
    }

    .floating-nav {
        width: 95%;
        padding: 15px 25px;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title h2 {
        font-size: 3rem;
    }

    .collection-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .collection-item {
        height: 400px;
    }

    .experience-stats {
        flex-direction: column;
        gap: 40px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
    }
}

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

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

.frame-1 {
    animation: float 6s ease-in-out infinite;
}

.frame-2 {
    animation: float2 7s ease-in-out infinite;
}
/* ===== ELEGANT NOTIFICATION STYLES ===== */
.global-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 380px;
    background: linear-gradient(135deg, var(--ivory) 0%, #ffffff 100%);
    border: 1px solid rgba(198, 166, 100, 0.3);
    border-radius: 12px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(198, 166, 100, 0.1);
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    transform: translateX(100px) translateY(-20px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    display: none;
}

.global-notification.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
    display: block;
}

.global-notification::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--gold-primary),
        var(--gold-secondary)
    );
    border-radius: 12px 0 0 12px;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notification-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-family: "Marcellus", serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.notification-message {
    font-size: 0.95rem;
    color: var(--taupe);
    line-height: 1.5;
    margin: 0;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--taupe);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-fast);
    flex-shrink: 0;
    opacity: 0.6;
}

.notification-close:hover {
    color: var(--gold-primary);
    opacity: 1;
}

/* Success variant */
.global-notification.success {
    border-left: 4px solid var(--gold-primary);
}

.global-notification.success .notification-icon {
    color: var(--gold-primary);
}

/* Error variant */
.global-notification.error {
    border-left: 4px solid #e74c3c;
}

.global-notification.error .notification-icon {
    color: #e74c3c;
}

/* Animation for notification entry */
@keyframes slideInNotification {
    0% {
        opacity: 0;
        transform: translateX(100px) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideOutNotification {
    0% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100px) translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .global-notification {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
}
/* Mobile responsiveness */
@media (max-width: 480px) {
    .global-notification {
        width: calc(100% - 40px);
        max-width: none;
        right: 20px;
        left: 20px;
        padding: 15px;
    }

    .notification-content {
        gap: 12px;
    }

    .notification-title {
        font-size: 1.1rem;
    }

    .notification-message {
        font-size: 0.85rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .global-notification {
        background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
        border-color: rgba(198, 166, 100, 0.2);
    }

    .notification-title {
        color: #f0f0f0;
    }

    .notification-message {
        color: #aaa;
    }
}
/* Smart logo that adapts */
.logo {
    transition: all 0.3s ease;
}

/* On tablets */
/* ===== LOGO RESPONSIVENESS ===== */
@media (max-width: 992px) and (min-width: 769px) {
    /* Tablet: Smaller full logo */
    .logo-full {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .logo-full {
        font-size: 1rem;
        position: relative;
        padding-right: 25px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    /* Very small screens: Even smaller A/A */
    .logo-full{
        font-size: 0.75rem;
        
    }
}
/* Mobile form enhancements */
@media (max-width: 768px) {
    .appointment-form {
        padding: 40px 25px;
    }

    .form-group {
        margin-bottom: 25px; /* More spacing between fields */
    }

    .form-control {
        padding: 16px 18px; /* Larger touch targets */
        font-size: 1rem; /* Better readability */
        min-height: 56px; /* iOS friendly tap target */
    }

    textarea.form-control {
        min-height: 120px;
    }

    /* Improve form row spacing on mobile */
    .form-row {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    /* Stack form fields vertically on small screens */
    @media (max-width: 576px) {
        .form-row {
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            width: 100%;
        }
    }

    /* Larger labels for better readability */
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 8px;
        color: var(--charcoal);
    }
}

/* Add these responsive styles to your existing style.css */

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

/* Large Tablets & Small Laptops (992px - 1200px) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem !important;
    }

    .section-title h2 {
        font-size: 3.5rem !important;
    }

    .hero-content {
        padding-right: 40px;
    }

    .floating-nav {
        width: 90%;
        padding: 15px 30px;
    }

    .nav-links li {
        margin: 0 18px;
    }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
        padding: 120px 5% 80px;
        margin-top: 0;
    }

    .hero-content {
        width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 60px;
    }

    .hero-title {
        font-size: 4rem !important;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .hero-image-container {
        width: 100%;
        height: 60vh;
        position: relative;
    }

    .hero-main-image {
        border-radius: 0 0 0 100px;
    }

    .hero-image-frame {
        display: none; /* Hide frames on tablet */
    }

    .collection-grid {
        grid-template-rows: repeat(8, 60px);
        gap: 15px;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .appointment-form {
        padding: 60px 40px;
    }

    .floating-nav {
        width: 95%;
        top: 20px;
        padding: 12px 25px;
    }

    .nav-links {
        display: none; /* Hide nav links on tablet, show hamburger menu */
    }

}

/* Large Mobile (576px - 768px) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .hero-image-container {
        height: 50vh;
    }

    .section-title h2 {
        font-size: 3rem !important;
    }

    .section-title p {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .collections-section,
    .experience-section,
    .appointment-section {
        padding: 100px 5% 80px;
    }

    .collection-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .collection-item {
        height: 400px;
    }

    .collection-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(
            to top,
            rgba(28, 27, 25, 0.9),
            transparent 100%
        );
    }

    .experience-stats {
        flex-direction: column;
        gap: 40px;
        margin-top: 50px;
    }

    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px solid rgba(198, 166, 100, 0.1);
    }

    .stat-number {
        font-size: 3rem;
        margin-bottom: 0;
    }

    .stat-label {
        text-align: right;
        flex: 1;
        padding-left: 20px;
    }

    .appointment-container {
        flex-direction: column;
    }

    .appointment-form {
        padding: 50px 30px;
    }

    .form-header h3 {
        font-size: 2.2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .floating-nav {
        justify-content: space-between;
        padding: 10px 20px;
        top: 15px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 0.75rem;
        margin-left: 10px;
        white-space: nowrap;
    }
}

/* Small Mobile (480px - 576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.8rem !important;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-image-container {
        height: 40vh;
    }

    .hero-main-image {
        border-radius: 0 0 0 60px;
    }

    .section-title h2 {
        font-size: 2.5rem !important;
    }

    .section-title p {
        font-size: 1rem;
        padding: 0;
    }

    .collections-section,
    .experience-section,
    .appointment-section {
        padding: 80px 5% 60px;
    }

    .collection-item {
        height: 350px;
    }

    .collection-overlay h3 {
        font-size: 1.5rem;
    }

    .appointment-form {
        padding: 40px 25px;
    }

    .form-header h3 {
        font-size: 1.8rem;
    }

    .form-control {
        padding: 16px 18px;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 18px 35px;
    }

    .floating-nav {
        width: calc(100% - 40px);
        left: 20px;
        transform: translateX(0);
        padding: 8px 15px;
        top: 10px;
    }


    .nav-cta {
        padding: 8px 16px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .bg-art-1,
    .bg-art-2,
    .bg-art-3 {
        opacity: 0.3; /* Reduce opacity for better readability */
    }
}

/* Extra Small Mobile (under 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-section {
        padding: 100px 5% 60px;
    }

    .nav-cta {
        padding: 8px 12px;
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }



    .section-title h2 {
        font-size: 2rem !important;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .appointment-form {
        padding: 35px 20px;
    }

    .form-header h3 {
        font-size: 1.6rem;
    }

    .form-header p {
        font-size: 1rem;
    }
}

/* ===== HAMBURGER MENU FOR MOBILE ===== */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--charcoal);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    margin-right: 10px;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(248, 245, 240, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(198, 166, 100, 0.2);
        border-top: none;
        z-index: 1000;
    }

    .nav-links.active li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-links.active a {
        font-size: 1rem;
        padding: 10px 0;
        display: block;
    }
}

/* ===== FOOTER RESPONSIVENESS ===== */
@media (max-width: 768px) {
    .luxury-footer {
        padding: 40px 0 20px;
        margin-top: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ===== UTILITY CLASSES FOR BETTER MOBILE EXPERIENCE ===== */
.mobile-hide {
    display: block;
}

.desktop-hide {
    display: none;
}

@media (max-width: 992px) {
    .mobile-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }
}

/* ===== TOUCH-FRIENDLY IMPROVEMENTS ===== */
@media (max-width: 768px) {
    button,
    .nav-cta,
    .submit-btn,
    .social-link,
    .footer-links a,
    .collection-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .form-control,
    input,
    textarea,
    select {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
}

/* ===== SMOOTH SCROLLING FOR MOBILE ===== */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px; /* Account for fixed nav */
    }
}

/* ===== FIX FOR IOS SAFARI 100VH ===== */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }
}
/* ===== FULLSCREEN LUXURY GALLERY MODAL ===== */
/* ===== FULLSCREEN LUXURY GALLERY MODAL – SEAMLESS MOBILE EXPERIENCE ===== */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1),
        visibility 0s linear 0.6s;
    overflow: hidden;
}

.fullscreen-modal.active {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

/* Fixed backdrop – always covers screen, sits behind everything */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(20, 20, 20, 0.92) 0%,
        #0a0a0a 100%
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
}

/* Close button – fixed, luxurious */
.modal-close-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 10002;
    background: transparent;
    border: none;
    color: var(--gold-accent);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(198, 166, 100, 0.3);
    transition: all 0.3s ease;
    font-weight: 300;
}

.modal-close-btn i {
    font-size: 1.4rem;
    transition: transform 0.4s ease;
}

.modal-close-btn:hover {
    background: var(--gold-accent);
    color: #0a0a0a;
    border-color: var(--gold-accent);
    gap: 18px;
}
.modal-close-btn:hover i {
    transform: rotate(90deg);
}

/* DESKTOP HEADER – fixed, elegant (hidden on mobile) */
.modal-header-area {
    position: fixed;
    top: 80px;
    left: 80px;
    z-index: 10001;
    max-width: 600px;
}

.modal-collection-title {
    font-family: "Reem kufi", serif;
    font-size: 5.5rem;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpTitle 0.8s forwards 0.2s;
}

.modal-collection-subtitle {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin: 0;
    font-style: italic;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUpTitle 0.8s forwards 0.3s;
}

@keyframes fadeUpTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE HEADER – will be injected via JS, shown only on mobile */
.modal-header-area-mobile {
    display: none; /* hidden on desktop */
}

/* Scrollable Gallery Container */
.modal-gallery-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 10001; /* above backdrop */
}

.modal-gallery-container::-webkit-scrollbar {
    display: none;
}

/* Each editorial piece – full viewport height, vertically centred */
.editorial-piece {
    min-height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 80px;
    box-sizing: border-box;
    /* Each slide has its own subtle gradient background to fully cover backdrop */
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

/* Alternating layout on desktop */
.editorial-piece:nth-child(even) {
    flex-direction: row-reverse;
}

/* Image wrapper */
.editorial-image-wrapper {
    flex: 1.2;
    position: relative;
    height: 80vh;
    max-height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.editorial-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: scale(0.95);
    animation: revealImage 1s forwards 0.4s;
}

@keyframes revealImage {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Detail annotations (desktop only) */
.editorial-details {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.detail-line {
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(
        to bottom,
        var(--gold-accent),
        rgba(198, 166, 100, 0.3)
    );
    transform-origin: top;
    transition: height 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.detail-annotation {
    position: absolute;
    color: var(--gold-accent);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-style: italic;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.editorial-image-wrapper:hover .detail-line {
    height: 80px;
}
.editorial-image-wrapper:hover .detail-annotation {
    opacity: 1;
    transform: translateX(0);
}

/* Text content */
.editorial-text {
    flex: 0.8;
    padding: 60px;
    color: #fff;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInText 0.8s forwards 0.6s;
}

.editorial-piece:nth-child(even) .editorial-text {
    transform: translateX(-30px);
}

@keyframes slideInText {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.editorial-piece-title {
    font-family: "Marcellus", serif;
    font-size: 3.2rem;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.2;
    position: relative;
}

.editorial-piece-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
}

.editorial-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.editorial-meta {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.editorial-meta li {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--gold-accent);
    font-size: 1rem;
    letter-spacing: 1px;
}

.editorial-meta li span:first-child {
    font-weight: 500;
    min-width: 80px;
}

.inquire-link {
    display: inline-block;
    color: var(--gold-primary);
    border-bottom: 1px solid var(--gold-primary);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.inquire-link:hover {
    color: #fff;
    border-bottom-color: #fff;
    padding-bottom: 10px;
}

/* Navigation dots – fixed on the right */
.gallery-nav-dots {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(198, 166, 100, 0.3);
    border: 1px solid rgba(198, 166, 100, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--gold-accent);
    transform: scale(1.5);
    box-shadow: 0 0 20px var(--gold-secondary);
}

/* ===== MOBILE MODAL REDESIGN ===== */
@media (max-width: 1024px) {
    /* Hide desktop header */
    .modal-header-area {
        display: none;
    }

    /* Fixed top bar for mobile */
    .mobile-modal-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10003;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(198, 166, 100, 0.3);
        padding: 16px 20px;
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
        transition: transform 0.3s ease;
    }

    .mobile-modal-header .title-section {
        flex: 1;
    }

    .mobile-modal-header .modal-collection-title {
        font-size: 1.6rem;
        margin: 0;
        line-height: 1.2;
        font-family: "Reem Kufi", serif;
        color: #fff;
    }

    .mobile-modal-header .modal-collection-subtitle {
        font-size: 0.85rem;
        margin: 4px 0 0;
        color: var(--gold-primary);
        font-style: italic;
    }

    /* Close button inside header – smaller, integrated */
    .mobile-modal-header .modal-close-btn {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(198, 166, 100, 0.5);
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    /* Gallery container – no offset, full height */
    .modal-gallery-container {
        top: 0;
        height: 100%;
        scroll-snap-type: y mandatory;
        padding-top: 80px; /* avoid overlap with fixed header */
        box-sizing: border-box;
    }

    /* Each editorial piece – snap start, but content is scrollable internally */
    .editorial-piece {
        flex-direction: column !important;
        min-height: calc(100vh - 80px);
        padding: 20px 20px 40px;
        background: rgba(10, 10, 10, 0.95);
        justify-content: flex-start;
        scroll-snap-align: start;
        overflow-y: auto; /* allows individual piece to scroll if needed */
    }

    /* Image – maintain aspect, no overlap */
    .editorial-image-wrapper {
        width: 100%;
        height: auto;
        max-height: 40vh;
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .editorial-image {
        max-width: 100%;
        max-height: 40vh;
        object-fit: contain;
    }

    /* Text – clear separation, no cramp */
    .editorial-text {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .editorial-piece-title {
        font-size: 1.8rem;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    .editorial-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    /* Metadata – two columns on medium, one on small */
    .editorial-meta {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }

    .editorial-meta li {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 0;
    }

    .editorial-meta li span:first-child {
        font-size: 0.75rem;
        opacity: 0.7;
    }

    .editorial-meta li span:last-child {
        font-size: 0.9rem;
    }

    /* Inquire button – full width, elegant */
    .inquire-link {
        display: block;
        text-align: center;
        border: 1px solid var(--gold-primary);
        padding: 12px 20px;
        border-radius: 40px;
        margin-top: 20px;
        background: transparent;
        transition: 0.2s;
    }

    .inquire-link:hover {
        background: var(--gold-primary);
        color: #0a0a0a;
    }

    /* Hide desktop annotations */
    .editorial-details {
        display: none;
    }

    /* Navigation dots – bottom centre, smaller */
    .gallery-nav-dots {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 12px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        padding: 6px 16px;
        border-radius: 30px;
    }

    .gallery-dot {
        width: 6px;
        height: 6px;
    }

    /* Extra small phones (< 480px) */
    @media (max-width: 480px) {
        .mobile-modal-header .modal-collection-title {
            font-size: 1.3rem;
        }
        .mobile-modal-header .modal-collection-subtitle {
            font-size: 0.7rem;
        }
        .editorial-piece-title {
            font-size: 1.5rem;
        }
        .editorial-meta {
            grid-template-columns: 1fr;
        }
        .modal-gallery-container {
            padding-top: 70px;
        }
        .editorial-piece {
            min-height: calc(100vh - 70px);
        }
    }
    
}

/* ------------------------------------------------------------- */
/* Slot picker luxury styling */
.slot-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, auto));
    gap: 16px;
    margin-top: 15px;
}

.slot-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(198, 100, 100, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    font-family: "Raleway", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gold-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

.slot-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(198, 166, 100, 0.3);
}

.slot-btn.selected {
    background: linear-gradient(
        135deg,
        var(--gold-primary),
        var(--gold-secondary)
    );
    border-color: var(--gold-primary);
    color: var(--gold-accent);
    box-shadow: 0 5px 15px rgba(198, 166, 100, 0.4);
}

.loading-slots,
.no-slots {
    text-align: center;
    padding: 30px;
    background: rgba(248, 245, 240, 0.8);
    border-radius: 15px;
    color: var(--taupe);
    font-style: italic;
}
