/* =========================
   LUXURY JEWELLERY UI PART 1
   ========================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FCF8F3;
    color: #1A1A1A;
    overflow-x: hidden;
    line-height: 1.6;
}

/* PREMIUM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f4ede3;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#D4AF37, #B8892D);
    border-radius: 20px;
}

/* CONTAINER */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

/* =========================
   TOP PROMO BAR
   ========================= */

.promo-top-bar {
    background: linear-gradient(90deg, #111111, #2A2A2A);
    color: white;
    padding: 12px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.promo-top-bar strong {
    color: #D4AF37;
}

/* MAIN NAVBAR */
.luxury-navbar {
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 9999;
      position: relative;
}

/* TOP NAV */
.top-navbar {
    padding: 14px 0;
    z-index: 9999;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #eee;
}

.top-navbar .container {
    max-width: 1450px;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* LOGO */
.site-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.03);
}

.navbar-brand {
    margin-right: 55px;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

/* SEARCH */
.luxury-search {
    flex: 1;
    max-width: 620px;
    position: relative;
}

.luxury-search i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #A8784F;
    font-size: 18px;
}

.luxury-search input {
    width: 100%;
    height: 54px;
    border-radius: 60px;
    border: 1px solid #E6E1DC;
    padding: 0 24px 0 52px;
    font-size: 15px;
    background: #FCFBFA;
    transition: 0.3s ease;
}

.luxury-search input:focus {
    outline: none;
    border-color: #C8A96B;
    box-shadow: 0 0 0 4px rgba(200,169,107,0.10);
}

/* ICONS */
.top-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-icons a {
    color: #5B3B2B;
    text-decoration: none;
    position: relative;
}

.top-icons i {
    font-size: 24px;
    transition: 0.3s ease;
}

.top-icons i:hover {
    color: #C8A96B;
}

/* CART */
.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #8B1E3F;
    color: white;
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* LOGIN BUTTON */
.login-btn {
    background: linear-gradient(135deg, #C8A96B, #E7C987);
    color: #111 !important;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
}

/* BOTTOM NAV */
.bottom-navbar {
    background: white;
    position: relative;
    margin-top: 75px;
}

.bottom-navbar .container {
    max-width: 1450px;
    padding-left: 40px;
    padding-right: 40px;
}

/* CATEGORY MENU */
.category-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 14px 0;
}

.category-menu li {
    position: relative;
}

.category-menu a {
    text-decoration: none;
    color: #3D2A22;
    font-weight: 500;
    font-size: 17px;
    transition: 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

.category-menu a:hover {
    color: #A8784F;
}

/* GOLD UNDERLINE */
.category-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #C8A96B;
    transition: 0.3s ease;
}

.category-menu a:hover::after {
    width: 100%;
}

/* MEGA MENU */
.category-dropdown{
    position: relative;
}

.category-mega-menu{

    position: absolute;

    top: 100%;

    left: 0;

    margin-top: 0;

    background: white;

    min-width: 240px;

    padding: 18px;

    border-radius: 18px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.10);

    display: none;

    flex-direction: column;

    gap: 12px;

    z-index: 9999;
}

.category-dropdown:hover .category-mega-menu,
.category-mega-menu:hover{

    display: flex;
}

.category-mega-menu a {
    font-size: 15px;
    color: #444;
}

/* MOBILE */
@media (max-width: 992px) {

    .top-navbar .container {
        flex-wrap: wrap;
        gap: 18px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .luxury-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .category-menu {
        overflow-x: auto;
        justify-content: flex-start;
        gap: 22px;
        padding-bottom: 12px;
    }

    .site-logo {
        height: 62px;
    }

    .category-menu a {
        white-space: nowrap;
        font-size: 15px;
    }
}

/* =========================
   HERO SECTION
   ========================= */

.hero-banner {
    background:
        linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)),
        url('https://images.unsplash.com/photo-1617038220319-276d3cfab638?auto=format&fit=crop&w=1800&q=80');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    min-height: 92vh;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 82px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
    text-shadow: 0 6px 25px rgba(0,0,0,0.35);
}

.hero-content p {
    font-size: 24px;
    max-width: 820px;
    margin: 0 auto 45px;
    color: rgba(255,255,255,0.95);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-offer {
    background: linear-gradient(135deg, #E0BC52, #C89A2D);
    color: #1A1A1A;
    padding: 18px 34px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 10px 28px rgba(212,175,55,0.35);
}

.hero-shop-btn {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    color: white;
    padding: 18px 34px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all 0.3s ease;
}

.hero-shop-btn:hover {
    background: white;
    color: #1A1A1A;
    transform: translateY(-3px);
}

/* =========================
   SECTION HEADINGS
   ========================= */

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1A1A1A;
    position: relative;
}

.section-title::after {
    content: '';
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #C89A2D);
    display: block;
    margin: 18px auto 0;
    border-radius: 20px;
}

/* =========================
   PROMO CARDS
   ========================= */

.promo-card {
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    padding: 42px 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.6);
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.promo-card h4 {
    color: #C89A2D;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.promo-card p {
    color: #666;
    font-size: 16px;
}

/* =========================
   TRUST BADGES
   ========================= */

.trust-badge {
    background: rgba(255,255,255,0.95);
    border-radius: 22px;
    padding: 36px 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.65);
}

.trust-badge:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 46px;
    margin-bottom: 18px;
}

.trust-badge h5 {
    color: #C89A2D;
    font-weight: 700;
    font-size: 22px;
}

.trust-badge p {
    color: #666;
    margin-top: 10px;
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonials-section {
    background: linear-gradient(180deg, #FFFDF9, #F7F0E8);
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.stars {
    font-size: 24px;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.testimonial-card h6 {
    color: #C89A2D;
    font-weight: 700;
    margin-top: 22px;
    font-size: 17px;
}

/* =========================
   PRODUCT SECTION
   ========================= */

.featured-section {
    padding: 110px 0;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    transition: 0.35s ease;
    margin-bottom: 22px;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.product-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card p {
    color: #C89A2D;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}



/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {

    .brand-logo {
        font-size: 22px;
    }

    .navbar-collapse {
        background: white;
        padding: 22px;
        border-radius: 18px;
        margin-top: 14px;
    }

    .hero-banner {
        min-height: 75vh;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .hero-offer,
    .hero-shop-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .section-title {
        font-size: 34px;
    }

    .product-image {
        height: 250px;
    }

    .newsletter-section h2 {
        font-size: 34px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}
section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

body {
    overflow-x: hidden;
}

.container {
    position: relative !important;
    z-index: 1 !important;
}




/* MEGA MENU */
.position-static {
    position: static !important;
}

.mega-menu {
    width: 720px;
    left: 50% !important;
    transform: translateX(-50%);
    border: none;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background: white;
    margin-top: 18px;
    padding: 30px !important;
}

.mega-heading {
    font-family: 'Playfair Display', serif;
    color: #C89A2D;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    border-bottom: 2px solid rgba(200,169,107,0.2);
    padding-bottom: 10px;
}

.mega-link {
    display: block;
    padding: 10px 0;
    color: #333 !important;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    border-radius: 10px;
}

.mega-link:hover {
    background: #FAF4E8;
    color: #C89A2D !important;
    padding-left: 12px;
}

@media (max-width: 992px) {
    .mega-menu {
        width: 100%;
        transform: none;
        left: auto !important;
        border-radius: 16px;
        padding: 20px !important;
    }

    .mega-menu .col-md-4 {
        margin-bottom: 20px;
    }
}

/* HERO CATEGORY DROPDOWN */
.hero-category-dropdown {
    position: relative;
    display: inline-block;
}

.hero-dropdown-btn {
    cursor: pointer;
    border: none;
}

.hero-dropdown-menu {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 850px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    z-index: 999;
}

.hero-category-dropdown:hover .hero-dropdown-menu {
    display: grid;
}

.hero-cat-column h5 {
    font-family: 'Playfair Display', serif;
    color: #C89A2D;
    font-size: 24px;
    margin-bottom: 18px;
    border-bottom: 2px solid rgba(200,169,107,0.2);
    padding-bottom: 10px;
}

.hero-cat-column a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    border-radius: 10px;
}

.hero-cat-column a:hover {
    color: #C89A2D;
    padding-left: 12px;
    background: #FAF4E8;
}

@media (max-width: 992px) {
    .hero-dropdown-menu {
        width: 95vw;
        grid-template-columns: 1fr;
        left: 50%;
    }
}


.luxury-category-modal {
    border: none;
    border-radius: 28px;
    padding: 20px;
    background: linear-gradient(180deg, #fffdf9, #f8f1e7);
    box-shadow: 0 25px 80px rgba(0,0,0,0.18);
}

.luxury-modal-title {
    font-family: 'Playfair Display', serif;
    color: #C89A2D;
    font-size: 38px;
    font-weight: 700;
}

.luxury-cat-box {
    background: white;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s ease;
}

.luxury-cat-box:hover {
    transform: translateY(-8px);
}

.luxury-cat-box h4 {
    font-family: 'Playfair Display', serif;
    color: #C89A2D;
    margin-bottom: 18px;
    font-size: 26px;
}

.luxury-cat-box a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
    border-radius: 10px;
}

.luxury-cat-box a:hover {
    background: #faf4e8;
    color: #C89A2D;
    padding-left: 12px;
}
/* HERO SLIDER */
.hero-slider {
    margin-top: 0;
    position: relative;
}

.hero-slide-image {
    height: 85vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    );
}

.hero-caption {
    bottom: 50%;
    transform: translateY(50%);
    z-index: 10;
}

.hero-caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.hero-caption p {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, #C8A96B, #E3C78A);
    color: #111;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    color: #111;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

@media (max-width: 768px) {
    .hero-slide-image {
        height: 60vh;
    }

    .hero-caption h1 {
        font-size: 34px;
    }

    .hero-caption p {
        font-size: 16px;
    }

    .hero-btn {
        padding: 12px 24px;
    }
}


/* FAQ PAGE */
.faq-page {
    background: #FAF8F4;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #C8A96B;
    font-weight: 700;
}

.faq-subtitle {
    color: #777;
    font-size: 18px;
}

/* FAQ CARD */
.faq-card {
    border: none;
    margin-bottom: 18px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.accordion-button {
    background: white;
    font-weight: 600;
    padding: 24px;
    font-size: 18px;
    color: #222;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #C8A96B;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    background: white;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    padding: 0 24px 24px;
}

/* ASK QUESTION */
.ask-question-box {
    background: white;
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.ask-question-box h2 {
    font-family: 'Playfair Display', serif;
    color: #111;
}

.ask-question-box input,
.ask-question-box textarea {
    border-radius: 18px;
    padding: 16px;
    border: 1px solid #eee;
}

.ask-question-box input:focus,
.ask-question-box textarea:focus {
    border-color: #C8A96B;
    box-shadow: 0 0 0 4px rgba(200,169,107,0.08);
}

.faq-submit-btn {
    background: linear-gradient(135deg, #C8A96B, #E7C987);
    border: none;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.faq-submit-btn:hover {
    transform: translateY(-2px);
}


.about-page {
    background: #FAF8F4;
}

/* HERO */
.about-hero-section {
    padding: 90px 0;
}

.about-tag {
    background: rgba(200,169,107,0.12);
    color: #C8A96B;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.about-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #111;
    margin-bottom: 30px;
}

.about-content h1 span {
    color: #C8A96B;
}

.about-description {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
}

/* LUXURY IMAGE */
.luxury-about-image-box {
    position: relative;
    padding: 25px;
}

.gold-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border: 3px solid rgba(200,169,107,0.45);
    border-radius: 34px;
    z-index: 1;
}

.about-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.18);
}

/* FLOATING BADGE */
.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -10px;
    z-index: 3;

    background:
        linear-gradient(
            135deg,
            #C8A96B,
            #E8CD8F
        );

    color: #111;
    padding: 18px 28px;
    border-radius: 18px;

    font-weight: 700;
    font-size: 18px;

    box-shadow:
        0 15px 35px rgba(200,169,107,0.28);
}

/* MOBILE */
@media (max-width:768px) {

    .about-main-image {
        height: 420px;
    }

    .floating-badge {
        left: 10px;
        bottom: 20px;
        padding: 12px 20px;
        font-size: 15px;
    }

}

/* COMMON */
.section-heading {
    color: #C8A96B;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 28px;
    color: #111;
}

.section-title.center {
    text-align: center;
}

/* STORY */
.about-story-section p {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

/* WHY SECTION */
.why-diamstory-section {
    padding: 80px 0;
}

.why-card {
    background: white;
    padding: 35px;
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    color: #111;
    margin-bottom: 18px;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

/* VISION */
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    height: 100%;
}

.vision-card p {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

/* MOBILE */
@media (max-width: 768px) {

    .about-content h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 34px;
    }

    .about-hero-section {
        padding: 60px 0;
    }

}


/* CONTACT PAGE */
.contact-page {
    background: #FAF8F4;
}

/* HERO */
.contact-hero {
    padding: 100px 0 70px;
    background:
        linear-gradient(
            rgba(255,255,255,0.82),
            rgba(255,255,255,0.82)
        ),
        url('assets/images/contact-bg.jpg');

    background-size: cover;
    background-position: center;
}

.contact-tag {
    background: rgba(200,169,107,0.12);
    color: #C8A96B;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.contact-hero p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* INFO BOX */
.contact-info-box {
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    height: 100%;
}

.contact-info-box h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 18px;
}

.contact-text {
    color: #666;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* CONTACT ITEM */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(200,169,107,0.12);

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #C8A96B;
    font-size: 24px;
}

.contact-item h5 {
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* FORM BOX */
.contact-form-box {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
}

.contact-form-box h2 {
    font-family: 'Playfair Display', serif;
}

/* INPUT */
.luxury-input {
    border-radius: 18px;
    border: 1px solid #eee;
    padding: 16px 18px;
    font-size: 15px;
}

.luxury-input:focus {
    border-color: #C8A96B;
    box-shadow: 0 0 0 4px rgba(200,169,107,0.08);
}

/* BUTTON */
.luxury-contact-btn {
    background:
        linear-gradient(
            135deg,
            #C8A96B,
            #E7C987
        );

    border: none;
    color: #111;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 700;

    transition: 0.3s ease;
}

.luxury-contact-btn:hover {
    transform: translateY(-3px);
}

/* MOBILE */
@media (max-width:768px) {

    .contact-hero {
        padding: 70px 0 50px;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 30px;
    }

}