:root {
    --bg-dark: #0f0f0f;
    --bg-darker: #050505;
    --accent-gold: #c9a14a;
    --accent-gold-hover: #b88e3d;
    --text-white: #ffffff;
    --text-gray: #cfcfcf;
    --card-bg: #1a1a1a;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.8;
    padding-top: 90px; /* Add padding to body */
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6, .luxury-font {
    font-family: 'Playfair Display', serif;
    color: var(--text-white);
    letter-spacing: 1.5px;
}

/* Minimal Premium Navbar */
.navbar {
    height: 90px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    padding: 0 !important;
}

.navbar .container {
    max-width: 1400px;
    width: 100%;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0; /* Prevent brand from shrinking */
}

.navbar-logo {
    height: 45px;
    width: auto;
    margin-right: 15px;
    filter: brightness(1.1);
}

.navbar-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold) !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    white-space: nowrap; /* Prevent text from wrapping */
}

.navbar-menu-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.navbar-nav-links li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.navbar-nav-links li a:hover {
    color: var(--accent-gold);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto; /* Push actions to the right */
}

.navbar-toggler-btn {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.navbar-toggler-btn:hover {
    transform: scale(1.1);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    z-index: 3000;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-content {
    padding: 40px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.close-mobile-menu {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-links li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.4s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.5s; }

.mobile-nav-links li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.mobile-nav-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-login {
    border: 1px solid rgba(201, 161, 74, 0.5);
    color: var(--accent-gold);
    padding: 0.7rem 2.2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
    border-radius: 2px;
}

.btn-login:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(201, 161, 74, 0.3);
    transform: translateY(-2px);
}

/* Scrolled state (optional, if you want it to shrink on scroll) */
.navbar.scrolled {
    height: 70px;
    background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }
    .navbar-brand-text {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    .btn-login {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }
    .navbar-logo {
        height: 35px;
        margin-right: 10px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 5.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 4rem;
    color: #d1d1d1;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.btn-luxury {
    background: var(--accent-gold);
    color: var(--bg-dark) !important;
    padding: 1.3rem 3.5rem;
    font-weight: 700;
    border-radius: 0;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-luxury-outline {
    background: transparent;
    color: var(--accent-gold) !important;
    border: 2px solid var(--accent-gold);
    padding: 1.3rem 3.5rem;
    font-weight: 700;
    border-radius: 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .btn-luxury, .btn-luxury-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile specific fixes (max-width: 576px) */
@media (max-width: 576px) {
    .hero {
        padding: 24px 16px; /* Spacing as requested */
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0; /* Container padding handles it */
        width: 100%;
    }

    .hero-content h1 {
        font-size: 32px !important; /* ~28–36px as requested */
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 2.5rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px; /* 10–16px as requested */
        width: 100%;
    }

    .btn-luxury, .btn-luxury-outline {
        width: 100% !important;
        max-width: none !important;
        padding: 1rem 2rem !important;
        font-size: 0.9rem !important;
    }
}

.btn-luxury:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.btn-luxury-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-dark) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 161, 74, 0.2);
}

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

/* Global Section Spacing */
section {
    padding: 100px 0;
}

/* Responsive Display Utilities */
@media (max-width: 768px) {
    .display-1 { font-size: 3.5rem !important; }
    .display-2 { font-size: 3rem !important; }
    .display-3 { font-size: 2.5rem !important; }
    .display-4 { font-size: 2.2rem !important; }
}

@media (max-width: 576px) {
    .display-1 { font-size: 2.8rem !important; }
    .display-2 { font-size: 2.5rem !important; }
    .display-3 { font-size: 2.2rem !important; }
    .display-4 { font-size: 1.8rem !important; }
}

/* Stats Section */
.stats {
    background: var(--bg-darker);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item h3 {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
}

/* Collections Section */
.collections {
    background: var(--bg-dark);
}

.section-title {
    text-align: center;
    margin-bottom: 7rem;
}

.section-title h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title .divider {
    width: 120px;
    height: 2px;
    background: var(--accent-gold);
    margin: 0 auto;
}

.collection-card {
    position: relative;
    overflow: hidden;
    height: 500px;
    margin-bottom: 40px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.85); /* Slightly darken for text contrast */
}

.collection-card:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3.5rem;
    background: rgba(0, 0, 0, 0.4);
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition);
}

.collection-card h4 {
    margin: 0;
    font-size: 2.2rem;
    transform: translateY(20px);
    transition: var(--transition);
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.collection-card:hover .collection-overlay {
    background: rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
}

.collection-card:hover h4 {
    transform: translateY(0);
    color: var(--accent-gold);
}

/* Why Choose Us */
.why-choose-us {
    background: var(--bg-darker);
    padding: 120px 0;
}

.why-card {
    background: rgba(255, 255, 255, 0.05); /* Increased background visibility */
    padding: 50px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Brighter border for glassmorphism */
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(201, 161, 74, 0.5);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 161, 74, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: var(--transition);
    border: 1px solid rgba(201, 161, 74, 0.2);
}

.why-card:hover .why-icon {
    background: var(--accent-gold);
    transform: rotateY(180deg);
}

.why-icon i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(201, 161, 74, 0.3));
}

.why-card:hover .why-icon i {
    color: var(--bg-dark);
}

.why-card h4 {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Subtle shadow for headings */
}

.why-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f1f5f9 !important; /* Soft white for high contrast */
    text-shadow: 0 1px 2px rgba(0,0,0,0.5); /* Shadow for better readability */
    font-weight: 400;
}
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--bg-dark);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    transition: var(--transition);
    position: relative;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 161, 74, 0.4);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.testimonial-card i.fa-quote-left {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 3rem;
    color: rgba(201, 161, 74, 0.15);
    transition: var(--transition);
}

.testimonial-card:hover i.fa-quote-left {
    color: rgba(201, 161, 74, 0.3);
    transform: scale(1.1);
}

.testimonial-card p {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
    flex-grow: 1; /* Pushes footer to bottom */
    text-align: left;
    position: relative;
    z-index: 1;
}

.client-info {
    margin-top: auto;
    text-align: left;
}

.client-info h5 {
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.client-info small {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 1rem;
}

.testimonial-card .fas.fa-star {
    font-size: 0.8rem;
    margin-right: 2px;
}

.testimonial-card .text-warning {
    color: var(--accent-gold) !important;
    filter: drop-shadow(0 0 5px rgba(201, 161, 74, 0.4));
}

/* Contact Section Premium UI */
.contact {
    padding: 150px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact-info-panel {
    background: linear-gradient(135deg, rgba(201, 161, 74, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.text-light-soft {
    color: #cbd5e1;
    line-height: 1.8;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(201, 161, 74, 0.1);
    border: 1px solid rgba(201, 161, 74, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.fw-500 {
    font-weight: 500;
}

/* Floating Label Inputs */
.form-floating-custom {
    position: relative;
}

.form-floating-custom .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    padding: 1.5rem 1.2rem 0.5rem;
    height: 65px;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.form-floating-custom textarea.form-control {
    height: auto;
    padding-top: 2rem;
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 1.2rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-floating-custom .form-control:focus,
.form-floating-custom .form-control:not(:placeholder-shown) {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    outline: none;
}

.form-floating-custom .form-control:focus + label,
.form-floating-custom .form-control:not(:placeholder-shown) + label {
    top: 1rem;
    font-size: 0.65rem;
    color: var(--accent-gold);
}

/* Gold Gradient Button */
.btn-gold-gradient {
    background: linear-gradient(135deg, #c9a14a 0%, #b88e3d 100%);
    color: #000 !important;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(201, 161, 74, 0.2);
}

.btn-gold-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(201, 161, 74, 0.4);
    filter: brightness(1.1);
}

.btn-gold-gradient i {
    transition: transform 0.3s ease;
}

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

@media (max-width: 991px) {
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .contact h2 {
        font-size: 2.5rem !important; /* Slightly smaller */
    }
    .p-xl-6 {
        padding: 3rem !important;
    }
}

/* Extra Small Screens Fix */
@media (max-width: 576px) {
    .contact h2 {
        font-size: 2.2rem !important; /* Even smaller for mobile */
        line-height: 1.2;
    }
    .contact-info-panel .p-5 {
        padding: 2rem !important; /* Reduce padding on mobile */
    }
    .contact-form-panel .p-5 {
        padding: 2rem !important; /* Reduce padding on mobile */
    }
    .contact-form-container {
        margin: 0 -10px; /* Slight overflow correction if needed */
        border-radius: 10px;
    }
    .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 350px) {
    .contact h2 {
        font-size: 1.8rem !important; /* Extremely small for 318px screens */
    }
}

.p-xl-6 {
    padding: 5rem !important;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    color: var(--text-white);
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    transition: var(--transition);
    font-size: 1.1rem;
}

.form-control:focus {
    background: transparent;
    box-shadow: none;
    border-color: var(--accent-gold);
    color: var(--text-white);
}

::placeholder {
    color: rgba(255,255,255,0.2) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
}

/* Footer */
footer {
    padding: 8rem 0 4rem;
    background: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    display: block;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer h5 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.copyright {
    margin-top: 8rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .section-title h2, .why-choose-us h2, .contact h2 {
        font-size: 3rem;
    }
    .navbar {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .contact-form {
        padding: 4rem 2.5rem;
    }
    .btn-luxury, .btn-luxury-outline {
        margin: 15px 0;
        width: 100%;
        padding: 1.1rem 2rem;
    }
    section {
        padding: 80px 0;
    }
    .navbar-brand {
        font-size: 1.8rem;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE FIXES - LANDING PAGE
   ============================================ */

/* Typography Scaling */
@media (max-width: 1400px) {
    .hero-content h1 { font-size: 4rem; }
}

@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.5rem; }
    .section-title h2 { font-size: 3rem; }
}

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1.1rem; }
    .section-title h2 { font-size: 2.5rem; }
    .section-title { margin-bottom: 4rem; }
    section { padding: 70px 0; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1rem; }
    .section-title h2 { font-size: 2.2rem; }
    section { padding: 60px 0; }
    .collection-card { height: 400px; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2.1rem; }
    .hero-content p { font-size: 0.95rem; }
    .section-title h2 { font-size: 1.9rem; }
    section { padding: 50px 0; }
    .collection-card { height: 350px; }
    .why-card { padding: 40px 20px; }
    .testimonial-card { padding: 2.5rem; }
}

@media (max-width: 350px) {
    .hero-content h1 { font-size: 1.8rem; }
    .section-title h2 { font-size: 1.6rem; }
}

/* Navbar Responsive */
@media (max-width: 991.98px) {
    .navbar {
        height: 70px !important;
        padding: 0.5rem 1rem !important;
    }
    .navbar-brand-text {
        font-size: 1.5rem !important;
    }
    .navbar-logo {
        height: 40px !important;
    }
    .navbar-menu-container {
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        height: 65px !important;
    }
    .navbar-nav-links {
        display: none !important;
    }
    .navbar-brand-text {
        font-size: 1.3rem !important;
    }
    .btn-login {
        padding: 0.6rem 1.25rem !important;
        font-size: 0.75rem !important;
    }
}

/* Hero Section Responsive */
@media (max-width: 991.98px) {
    .hero {
        min-height: 100vh;
        height: auto;
    }
    .hero-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 80px 0 4rem;
    }
    .hero-content {
        padding: 1rem;
    }
    .hero-btns {
        gap: 15px;
    }
    .btn-luxury, .btn-luxury-outline {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 70px 0 3rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .btn-luxury, .btn-luxury-outline {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* Collections Section Responsive */
@media (max-width: 991.98px) {
    .collection-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .collection-card {
        height: 380px;
    }
    .collection-card h4 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .collection-card {
        height: 320px;
    }
    .collection-overlay {
        padding: 2rem;
    }
}

/* Why Choose Us Responsive */
@media (max-width: 767.98px) {
    .why-choose-us {
        padding: 80px 0;
    }
    .why-card {
        margin-bottom: 1.5rem;
    }
    .why-icon {
        width: 70px;
        height: 70px;
    }
    .why-icon i {
        font-size: 1.8rem;
    }
}

/* Testimonials Responsive */
@media (max-width: 991.98px) {
    .testimonials {
        padding: 80px 0;
    }
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    .testimonial-card p {
        font-size: 1rem;
    }
    .testimonial-card i.fa-quote-left {
        font-size: 2.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }
}

/* Contact Section Responsive */
@media (max-width: 991.98px) {
    .contact {
        padding: 100px 0;
    }
}

@media (max-width: 767.98px) {
    .contact {
        padding: 80px 0;
    }
    .contact-form-container {
        border-radius: 15px;
    }
    .form-floating-custom .form-control {
        height: 60px;
        padding: 1.25rem 1rem 0.5rem;
    }
    .form-floating-custom label {
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .contact-info-panel .p-5,
    .contact-form-panel .p-5 {
        padding: 1.5rem !important;
    }
    .btn-gold-gradient {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    footer {
        padding: 5rem 0 3rem;
    }
    .footer-logo {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    .footer h5 {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    footer {
        padding: 4rem 0 2.5rem;
    }
    .footer-links a {
        font-size: 1rem;
    }
    .copyright {
        margin-top: 4rem;
        padding-top: 2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .footer [class*="col-"] {
        text-align: center;
        margin-bottom: 2rem;
    }
    .footer-logo {
        text-align: center;
    }
    .copyright {
        text-align: center;
    }
}

/* Stats Section Responsive */
@media (max-width: 991.98px) {
    .stat-item {
        margin-bottom: 2rem;
    }
    .stat-item h3 {
        font-size: 3rem;
    }
    .stat-item p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .stat-item {
        text-align: center;
    }
    .stat-item h3 {
        font-size: 2.2rem;
    }
    .stat-item p {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
}

/* Mobile Nav Overlay Improvements */
@media (max-width: 767.98px) {
    .mobile-nav-overlay {
        padding-top: 20px;
    }
    .mobile-nav-content {
        padding: 30px 20px;
    }
    .mobile-nav-links li a {
        font-size: 1.75rem;
    }
    .close-mobile-menu {
        font-size: 1.75rem;
    }
}

/* Touch Target Improvements */
@media (hover: none) and (pointer: coarse) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    .navbar-toggler-btn {
        padding: 0.75rem;
    }
}

/* Prevent Horizontal Scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Grid Responsive */
@media (max-width: 575.98px) {
    .container, .container-fluid {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .row {
        margin-right: -0.5rem;
        margin-left: -0.5rem;
    }
    .row > [class*="col-"] {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}

/* Image Responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Smooth Transition for All Elements */
* {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
