/* =========================================
   Global Reset
   Applies box-sizing to all elements
========================================= */
* {
    box-sizing: border-box;
}

/* =========================================
   Body Styling
   Sets the general font, background, and text color
========================================= */
body {
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", serif;
    background: linear-gradient(to bottom, #d7cab8, #f7f3ed);
    color: #222;
}

/* =========================================
   Header Section
   Styles the top navigation area
========================================= */
.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(120, 96, 72, 0.15);
    padding: 15px 40px;
    position: relative;
    z-index: 1000;
}

/* Container for logo and navigation */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo and brand name section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 60px;
}

.brand-text h1 {
    margin: 0;
    font-size: 26px;
    letter-spacing: 3px;
    font-weight: normal;
    color: #2d241d;
}

.brand-text p {
    margin: 2px 0 0 0;
    font-size: 11px;
    letter-spacing: 2px;
    color: #8a6b47;
    text-transform: uppercase;
}

/* =========================================
   Navigation Menu
========================================= */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    display: inline-block;
    margin-left: 25px;
}

.nav-list a {
    text-decoration: none;
    color: #2d241d;
    font-size: 15px;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s ease;
}

/* Hover underline effect */
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background-color: #8a6b47;
    transition: 0.3s ease;
}

.nav-list a:hover {
    color: #8a6b47;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Active navigation link */
.active-link {
    color: #8a6b47 !important;
}

.active-link::after {
    width: 100% !important;
}

/* =========================================
   Home Hero Section
========================================= */
.hero-image {
    width: 100%;
    height: 700px;
    margin: 0;
    background-image: url("../images/home.avif");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Overlay text box above hero image */
.overlay {
    background: rgba(0, 0, 0, 0.22);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: absolute;
    inset: 0;
}

.overlay h2 {
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 18px;
}

.overlay p {
    width: 60%;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto;
}

/* Main button in hero section */
.hero-btn {
    margin-top: 24px;
    padding: 12px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-size: 16px;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background-color: white;
    color: black;
}

/* =========================================
   General Content Sections
========================================= */
.about-section,
.quote-section,
.contact-section {
    width: 85%;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 36px 30px;
    border-radius: 16px;
    text-align: center;
}

.about-section h3,
.contact-section h3 {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 16px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #44372d;
}

/* Quote styling */
blockquote {
    font-size: 30px;
    font-style: italic;
    color: #5c5145;
    margin: 0;
}

/* Contact info styling */
address {
    font-style: normal;
    line-height: 2;
    font-size: 18px;
    color: #44372d;
}

/* =========================================
   Why Section
========================================= */
.why-section {
    width: 85%;
    margin: 40px auto;
    text-align: center;
}

.why-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.why-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px 20px;
    border-radius: 14px;
    flex: 1;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: normal;
    color: #2d241d;
}

.why-card p {
    font-size: 15px;
    color: #6f5c4b;
    line-height: 1.7;
}

/* =========================================
   Categories Section
========================================= */
.categories-luxury-section {
    width: 85%;
    margin: 50px auto;
    text-align: center;
}

.categories-heading {
    font-size: 42px;
    font-weight: normal;
    color: #2d241d;
    margin-bottom: 12px;
}

.categories-subheading {
    font-size: 18px;
    color: #6f5c4b;
    margin-bottom: 35px;
}

/* Grid layout for categories */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: start;
}

.luxury-card {
    text-align: center;
}

.luxury-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.luxury-card img:hover {
    transform: scale(1.02);
}

.luxury-card h3 {
    font-size: 24px;
    font-weight: normal;
    margin-top: 18px;
    color: #2f241a;
}

/* =========================================
   Peacock Banner Section
========================================= */
.peacock-banner {
    width: 100%;
    margin: 60px 0 40px 0;
    overflow: hidden;
}

.peacock-banner img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    background-position: center 20%;
    display: block;
}

/* =========================================
   Footer
========================================= */
footer {
    text-align: center;
    padding: 22px;
    background-color: rgba(255, 255, 255, 0.55);
    margin-top: 40px;
    font-size: 16px;
}

/* =========================================
   Services Page Hero
========================================= */
.services-page-hero {
    width: 100%;
    height: 430px;
    background-image: url("../images/home.avif");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.services-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.services-overlay h2 {
    font-size: 52px;
    font-weight: normal;
    margin-bottom: 15px;
}

.services-overlay p {
    width: 60%;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* Services introduction section */
.services-intro {
    width: 85%;
    margin: 0 auto 40px auto;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.services-intro h3 {
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #2d241d;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: #5f4d3f;
    width: 80%;
    margin: 0 auto;
}

/* Services cards section */
.services-cards-section {
    width: 85%;
    margin: 0 auto 50px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.58);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 28px;
    font-weight: normal;
    margin: 22px 20px 10px 20px;
    color: #2d241d;
}

.service-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #5f4d3f;
    padding: 0 24px 28px 24px;
    margin: 0;
}

/* Link wrapper for service card */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Why Sparkle section */
.why-sparkle-section {
    width: 85%;
    margin: 0 auto 50px auto;
    text-align: center;
}

.why-sparkle-section h3 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #2d241d;
}

.why-sparkle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-box {
    background-color: rgba(255, 255, 255, 0.58);
    padding: 30px 20px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.why-box:hover {
    transform: translateY(-5px);
}

.why-box h4 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #2d241d;
}

.why-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #5f4d3f;
    margin: 0;
}

/* =========================================
   Feedback Page
========================================= */
.feedback-page-hero {
    width: 100%;
    height: 430px;
    background-image: url("../images/home.avif");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.feedback-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.feedback-overlay h2 {
    font-size: 52px;
    font-weight: normal;
    margin-bottom: 15px;
}

.feedback-overlay p {
    width: 60%;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.feedback-intro {
    width: 85%;
    margin: 0 auto 40px auto;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.feedback-intro h3 {
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #2d241d;
}

.feedback-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: #5f4d3f;
    width: 80%;
    margin: 0 auto;
}

.feedback-form-section {
    width: 85%;
    margin: 0 auto 50px auto;
}

.feedback-form {
    background-color: rgba(255, 255, 255, 0.58);
    border-radius: 16px;
    padding: 35px 30px;
}

/* Two-column form layout */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d241d;
}

.form-group label span {
    color: #9b3d35;
}

.feedback-form input[type="text"],
.feedback-form input[type="email"],
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 14px 14px;
    border: 1px solid #d5c5b2;
    border-radius: 10px;
    background-color: white;
    font-family: "Times New Roman", serif;
    font-size: 16px;
    color: #2d241d;
}

.feedback-form textarea {
    resize: vertical;
    min-height: 140px;
}

.feedback-form input[type="text"]:focus,
.feedback-form input[type="email"]:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: #8a6b47;
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 6px;
}

.option-group label,
.confirm-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: #5f4d3f;
    margin-bottom: 0;
}

.char-count {
    text-align: right;
    font-size: 13px;
    color: #7a6a58;
    margin-top: 6px;
}

.error {
    color: #b23b3b;
    font-size: 13px;
    margin: 6px 0 0 0;
    min-height: 16px;
}

.form-buttons {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.btn-submit,
.btn-reset {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-family: "Times New Roman", serif;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit {
    background-color: #8a6b47;
    color: white;
}

.btn-submit:hover {
    background-color: #6f5538;
}

.btn-reset {
    background-color: #ddd2c4;
    color: #2d241d;
}

.btn-reset:hover {
    background-color: #ccbda9;
}

/* =========================================
   Schedule Page
========================================= */
.schedule-page-hero {
    width: 100%;
    height: 430px;
    background-image: url("../images/home.avif");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.schedule-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    color: white;
}

.schedule-overlay h2 {
    font-size: 52px;
    font-weight: normal;
    margin-bottom: 15px;
}

.schedule-overlay p {
    width: 60%;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.schedule-intro {
    width: 85%;
    margin: 0 auto 40px auto;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.schedule-intro h3 {
    font-size: 38px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #2d241d;
}

.schedule-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: #5f4d3f;
    width: 80%;
    margin: 0 auto;
}

/* Table container */
.schedule-table-section {
    width: 85%;
    margin: 0 auto 50px auto;
    background-color: rgba(255, 255, 255, 0.58);
    border-radius: 16px;
    padding: 30px;
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid #d8cab8;
    padding: 16px 12px;
    font-size: 16px;
    color: #2d241d;
}

.schedule-table th {
    background-color: #8a6b47;
    color: white;
    font-weight: normal;
    letter-spacing: 0.5px;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: #f8f3ec;
}

.schedule-table tbody tr:hover {
    background-color: #efe5d7;
    transition: 0.3s ease;
}

/* =========================================
   Custom Design Page
========================================= */
.custom-page {
    padding-bottom: 50px;
}

.custom-hero {
    width: 100%;
    height: 380px;
    background-image: url("../images/home.avif");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.custom-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.custom-overlay h2 {
    font-size: 50px;
    font-weight: normal;
    margin-bottom: 15px;
}

.custom-overlay p {
    width: 60%;
    font-size: 18px;
    line-height: 1.8;
}

.custom-design-section {
    width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.custom-form-box,
.preview-box {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 16px;
}

.custom-form-box h3,
.preview-box h3 {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #2d241d;
}

#previewContent p {
    font-size: 18px;
    line-height: 1.8;
    color: #5f4d3f;
}

/* =========================================
   Upload Jewelry Section
========================================= */
.upload-box {
    border: 2px dashed #d6c6b4;
    border-radius: 28px;
    background: linear-gradient(to bottom, #fcfaf7, #f4efe8);
    padding: 55px 45px;
    margin-top: 25px;
    text-align: center;
    transition: 0.35s ease;
    position: relative;
}

.upload-box:hover {
    background: #f7f2ec;
    border-color: #b38b59;
    box-shadow: 0 12px 30px rgba(179, 139, 89, 0.15);
}

.upload-title {
    color: #1f1a17;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.upload-subtitle {
    color: #9a6f42;
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.9;
}

.upload-btn {
    display: inline-block;
    background: linear-gradient(135deg, #b38b59, #8c633b) !important;
    color: #fff !important;
    padding: 18px 42px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.35s ease;
    box-shadow: 0 10px 24px rgba(179, 139, 89, 0.25);
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.upload-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 30px rgba(179, 139, 89, 0.35);
    background: linear-gradient(135deg, #c79a63, #9a6f42) !important;
}

.file-name {
    margin-top: 20px;
    color: #8c633b;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.preview-wrapper {
    margin-top: 30px;
    display: none;
}

.preview-wrapper img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid #e1d8cf;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* =========================================
   Collections Page
========================================= */
.collections-page {
    padding-bottom: 50px;
}

.collections-hero {
    width: 100%;
    height: 380px;
    background-image: url("../images/home.avif");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.collections-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.collections-overlay h2 {
    font-size: 50px;
    font-weight: normal;
    margin-bottom: 15px;
}

.collections-overlay p {
    width: 60%;
    font-size: 18px;
    line-height: 1.8;
}

.collections-grid-section {
    width: 85%;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* Final unified image styling for product cards */
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background-color: #f3ede6;
    padding: 15px;
    display: block;
}

.product-card h3 {
    font-size: 28px;
    font-weight: normal;
    margin: 20px 15px 10px;
    color: #2d241d;
}

.product-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #5f4d3f;
    padding: 0 18px;
    margin-bottom: 12px;
}

.product-card h4 {
    font-size: 24px;
    font-weight: normal;
    color: #8a6b47;
    margin-bottom: 16px;
}

.product-card button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background-color: #8a6b47;
    color: white;
    cursor: pointer;
    font-family: "Times New Roman", serif;
    font-size: 16px;
}

.product-card button:hover {
    background-color: #6f5538;
}

/* =========================================
   Cart Page
========================================= */
.cart-page {
    padding-bottom: 50px;
}

.cart-hero {
    width: 100%;
    height: 360px;
    background-image: url("../images/home.avif");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.cart-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.cart-overlay h2 {
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 15px;
}

.cart-overlay p {
    width: 60%;
    font-size: 18px;
    line-height: 1.8;
}

.cart-section {
    width: 85%;
    margin: 0 auto;
}

.cart-box {
    background-color: rgba(255, 255, 255, 0.58);
    padding: 30px;
    border-radius: 16px;
}

.cart-box h3 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #2d241d;
}

/* Single cart item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border: 1px solid #d8cab8;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 18px;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item h4 {
    margin-top: 0;
    font-size: 28px;
    font-weight: normal;
    color: #2d241d;
}

.cart-item p {
    margin: 8px 0;
    color: #5f4d3f;
    font-size: 17px;
}

.cart-summary {
    margin-top: 25px;
    text-align: right;
}

.cart-summary h4 {
    font-size: 28px;
    font-weight: normal;
    color: #2d241d;
}

.remove-btn {
    margin-top: 12px;
    padding: 10px 16px;
    background-color: #8a6b47;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.remove-btn:hover {
    background-color: #6f5538;
}

/* =========================================
   FAQ Popup
========================================= */
.faq-side-tab {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translateY(-50%) rotate(-180deg);
    writing-mode: vertical-rl;
    background-color: #8f8a83;
    color: white;
    text-decoration: none;
    padding: 18px 10px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 10px 0 0 10px;
    z-index: 9999;
    cursor: pointer;
    transition: background-color 0.3s ease, padding 0.3s ease;
    font-family: "Times New Roman", serif;
}

.faq-side-tab:hover {
    background-color: #6f6a64;
    padding: 18px 12px;
}

.faq-popup {
    position: fixed;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    background: #f8f5f0;
    border: 1px solid #ddd3c7;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 20px;
    display: none;
    z-index: 10000;
}

.faq-popup.show {
    display: block;
}

.faq-popup h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #2d241d;
    font-weight: normal;
    font-size: 24px;
}

.faq-popup p {
    color: #5f4d3f;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.faq-popup strong {
    color: #2d241d;
}

.faq-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    color: #8a6b47;
    cursor: pointer;
    font-family: "Times New Roman", serif;
}

.faq-popup-close:hover {
    color: #6f5538;
}

/* =========================================
   Responsive Design
========================================= */
@media (max-width: 992px) {
    .luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxury-card img {
        height: 320px;
    }

    .peacock-banner img {
        height: 500px;
    }

    .overlay h2,
    .services-overlay h2,
    .feedback-overlay h2,
    .schedule-overlay h2 {
        font-size: 40px;
    }

    .overlay p,
    .services-overlay p,
    .feedback-overlay p,
    .schedule-overlay p {
        width: 80%;
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-sparkle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo {
        width: 90px;
    }

    .brand-text h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .nav-list li {
        display: block;
        margin: 12px 0;
    }

    .hero-image,
    .services-page-hero,
    .feedback-page-hero,
    .schedule-page-hero {
        height: 320px;
    }

    .overlay h2,
    .services-overlay h2,
    .feedback-overlay h2,
    .schedule-overlay h2,
    .collections-overlay h2 {
        font-size: 30px;
    }

    .overlay p,
    .services-overlay p,
    .feedback-overlay p,
    .schedule-overlay p,
    .collections-overlay p {
        width: 90%;
        font-size: 15px;
    }

    .about-section,
    .quote-section,
    .contact-section,
    .services-intro,
    .services-cards-section,
    .why-sparkle-section,
    .feedback-intro,
    .feedback-form-section,
    .schedule-intro,
    .schedule-table-section,
    .categories-luxury-section {
        width: 92%;
    }

    .categories-heading {
        font-size: 30px;
    }

    .categories-subheading {
        font-size: 15px;
        line-height: 1.7;
    }

    .luxury-grid,
    .why-sparkle-grid,
    .collections-grid,
    .custom-design-section {
        grid-template-columns: 1fr;
    }

    .luxury-card img {
        height: 300px;
    }

    .luxury-card h3 {
        font-size: 22px;
    }

    .peacock-banner img {
        height: 360px;
    }

    blockquote {
        font-size: 24px;
    }

    address {
        font-size: 16px;
    }

    .services-intro h3,
    .feedback-intro h3,
    .schedule-intro h3 {
        font-size: 30px;
    }

    .services-intro p,
    .feedback-intro p,
    .schedule-intro p {
        width: 100%;
        font-size: 16px;
    }

    .service-card img {
        height: 240px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .why-sparkle-section h3 {
        font-size: 32px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .schedule-table th,
    .schedule-table td {
        font-size: 14px;
        padding: 12px 8px;
    }

    .faq-side-tab {
        top: 65%;
        font-size: 13px;
        padding: 15px 8px;
    }

    .faq-popup {
        right: 45px;
        width: 250px;
        padding: 18px;
    }

    .faq-popup h3 {
        font-size: 20px;
    }

    .faq-popup p {
        font-size: 13px;
    }
}
.peacock-banner {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;  
}

/* ===== Overview Section ===== */
.overview-section {
    padding: 120px 20px;
    background: #f7f3ef;
    text-align: center;
}

.overview-content {
    max-width: 900px;
    margin: auto;
}

.overview-content h2 {
    font-size: 38px;
    font-weight: normal;
    color: #2d241d;
}

/* gold line */
.line {
    width: 80px;
    height: 2px;
    background: #bfa37a;
    margin: 20px auto 40px;
}

/* text */
.overview-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f4d3f;
}

/* features */
.overview-features {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    gap: 20px;
}

.feature-box {
    flex: 1;
    padding: 20px;
}

.feature-box h4 {
    font-size: 18px;
    color: #8a6b47;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
}


.last-text {
    margin-top: 30px;
}
/* media */
@media (max-width: 768px) {

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .logo-section {
        flex-direction: column;
        align-items: center;
    }

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

    
    h1 {
        font-size: 24px;
    }

    p {
        font-size: 15px;
    }

}