/* Global Styles */
:root {
    --primary-color: #9e2b3c;
    --primary-dark: #7e2231;
    --secondary-color: #333;
    --light-color: #f8f8f8;
    --dark-color: #222;
    --gray-color: #f4f4f4;
    --text-color: #333;
    --border-color: #e0e0e0;
    --font-primary: 'Arial', sans-serif;
    --font-secondary: 'Helvetica', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--gray-color);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header Styles */
header {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Ensure header .container respects flex properties */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Ensure it spans full width of its parent */
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.tagline {
    font-size: 12px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

/* Main Navigation (Desktop) */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* Default display for desktop */
    display: flex;
    /* Ensure it's a flex container for its ul */
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shared-background {
    background-image: url('uploads/sitespecific/home.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    /* add height to show background */
}


.header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Desktop Search Bar Styling */
.desktop-search {
    display: flex;
    /* Show by default on desktop */
    align-items: center;
    gap: 5px;
    /* Space between input and button */
}

.desktop-search .search-input {
    width: 180px;
    /* Specific width for desktop */
    padding: 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    /* Rounded corners */
    font-size: 14px;
}

/* Hamburger Menu (Mobile Toggle) */
.hamburger {
    display: none;
    /* Hidden by default on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 110;
    /* Ensure it's above other elements */
}

.hamburger span {
    height: 2px;
    width: 18px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Search Container (hidden by default, shown within active mobile nav) */
.mobile-search-container {
    display: none;
    /* Hidden on desktop and when mobile nav is closed */
    padding: 15px 0;
    /* Add padding for internal mobile nav placement */
    width: 100%;
    box-sizing: border-box;
}

.mobile-search-container .search-input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    /* Ensures padding is included in width */
}

/* --- Search Form & Button Styling (General) --- */
/* Applies to both desktop and mobile search forms */
.search-form {
    display: flex;
    align-items: center;
    width: 100%;
    /* Important for inputs inside flex containers */
}

.search-form .search-button {
    background-color: transparent;
    border: none;
    color: var(--secondary-color);
    /* Adjust color to match your design */
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: -35px;
    /* Adjust to overlap input for icon */
    position: relative;
    /* Needed for z-index */
    z-index: 1;
    /* Bring button above input if needed */
    transition: var(--transition);
}

.search-form .search-button:hover {
    color: var(--primary-color);
    /* Primary color on hover */
}

/* Adjust search input padding to make space for the icon */
/* Using !important for specificity if other rules are overriding padding */
.search-input {
    padding-right: 40px !important;
    /* Make space for the button */
    flex-grow: 1;
    /* Allows input to fill available space in flex container */
}


/* Responsive Header Nav */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        /* Show hamburger on mobile */
    }

    .header-tools {
        /* On mobile, header-tools might hold hamburger and other icons,
           but search will be inside main-nav when active.
           If there are other non-nav tools here, adjust as needed. */
        flex-direction: row;
        /* Keep tools in a row */
        gap: 15px;
        margin-top: 0;
    }

    /* Hide desktop search on mobile */
    .desktop-search {
        display: none;
    }

    /* Mobile Navigation Specifics */
    .main-nav {
        display: none;
        /* Hidden by default on mobile */
        flex-direction: column;
        gap: 15px;
        background: white;
        position: absolute;
        top: 70px;
        /* Position below header */
        right: 20px;
        width: 200px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
        transform: none;
        /* Remove desktop transform */
        left: auto;
        /* Remove desktop left positioning */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-nav.active {
        display: flex;
        /* Show main nav when active */
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    /* Show mobile search container only when main-nav is active */
    .main-nav.active .mobile-search-container {
        display: flex;
        /* Display the mobile search input within the active nav */
        order: -1;
        /* Place it at the top of the flex column inside the nav */
    }

    .main-nav .mobile-search-container {
        /* Ensure it's hidden when nav is not active */
        display: none;
    }


    /* Other Mobile Responsive Adjustments */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* This centers children horizontally */
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 0 auto;
        /* Ensures centering if align-items fails */
    }


    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 4px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero .highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Collections Section */
.collections {
    padding: 80px 0;
    text-align: center;
}

.collections h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--secondary-color);
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: none;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close-modal {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #333;
    text-decoration: none;
}

.modal-body {
    padding: 20px;
    text-align: center;
}

.modal-body h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.success .modal-icon {
    color: #4CAF50;
}

.error .modal-icon {
    color: #f44336;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    text-align: left;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eecfd3;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    text-decoration: none;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.contact-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.social-connect h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-brand p {
    margin-bottom: 20px;
    color: #aaa;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #aaa;
    transition: var(--transition);
}

.footer-social a:hover {
    color: white;
}

.footer-links {
    flex: 3;
    display: flex;
    justify-content: space-between;
}

.footer-links-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #444;
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #aaa;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
}

/* Responsive Contact & Footer */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

.suggestions-box {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 10;
    display: none;
}

.suggestions-box div {
    padding: 8px 12px;
    cursor: pointer;
}

.suggestions-box div:hover {
    background-color: #f0f0f0;
}

/* === Outer Slider Section === */
.product-slider-outer {
    margin-bottom: -10px;
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

.product-slider-section {
    margin-bottom: 70px;
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

/* === Wrapper to Control Width === */
.slider-wrapper {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    /* wider than 960 for nice side peeks */
    margin: 60px auto;
    position: relative;
}

/* === Swiper container === */
.product-swiper {
    overflow: visible;
    position: relative;
    margin-bottom: 50px;
    padding: 60px 0;
    width: 100%;
}

.product-swiper .swiper-wrapper {
    overflow: visible;
}

/* === Slide === */
.product-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    /* align-items: center; REMOVE THIS */
    transition: transform 0.5s ease;
    padding: 40px 0;
    /* add vertical room for scale */
    overflow: visible;
    /* just to be safe */
}


.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 280px;
    /* this defines the card size */
    margin: 0 auto;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    font-size: 0.95rem;
    margin: 10px 0 5px 0;
    color: #333;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5em;
}

.product-card p {
    color: #888;
    margin-top: 4px;
    font-size: 0.85rem;
    margin-bottom: 0;
    min-height: 1.2em;
}

/* === Active Slide === */
.product-swiper .swiper-slide-active .product-card {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

/* === Side Slides === */
.product-swiper .swiper-slide-prev .product-card,
.product-swiper .swiper-slide-next .product-card {
    transform: scale(0.9);
    opacity: 0.8;
}

/* === Arrows === */
.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.product-swiper .swiper-button-next:hover,
.product-swiper .swiper-button-prev:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-swiper .swiper-button-next:after,
.product-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.product-swiper .swiper-button-next {
    right: 0;
}

.product-swiper .swiper-button-prev {
    left: 0;
}

/* === Pagination === */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    background: #333;
    width: 10px;
    height: 10px;
}

/* === Responsive === */
@media (max-width: 1023px) {
    .slider-wrapper {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .slider-wrapper {
        max-width: 320px;
    }

    .product-swiper .swiper-button-next,
    .product-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
        right: -15px;
        left: -15px;
    }

    .product-swiper .swiper-button-next:after,
    .product-swiper .swiper-button-prev:after {
        font-size: 16px;
    }

    .product-card {
        max-width: 280px;
        min-height: 320px;
    }
}

.product-swiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) .product-card {
    transform: scale(0.8);
    opacity: 0.5;
}

/* Feedback Slider Outer Container */
.feedback-slider-outer {
    padding: 60px 0;
    background-color: #f9f9f9;
    /* Light background for the section */
    text-align: center;
    position: relative;
    /* Needed for absolute positioning of arrows */
}

.feedback-slider-outer h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

/* Feedback Card Styling within Swiper */
.feedback-slider-outer .feedback-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    height: 100%;
    /* Ensure cards fill the slide height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feedback-card .feedback-category {
    font-size: 0.9em;
    /* You can adjust this */
    font-weight: bold;
    /* Make it bold */
    color: #000000;
    /* Highlight color - adjust as needed */
    margin-bottom: 10px;
    /* Spacing below category */
    text-transform: uppercase;
    /* Optional: Make it uppercase */
}

.feedback-slider-outer .feedback-card .stars {
    color: #ffc107;
    /* Gold color for stars */
    margin-bottom: 15px;
    font-size: 1.2em;
    /* Slightly larger stars */
}

.feedback-slider-outer .feedback-card .stars .fas {
    margin-right: 3px;
}

.feedback-slider-outer .feedback-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    /* Allow message to take up available space */
    margin-bottom: 20px;
    /* Space between message and author */
}

.feedback-slider-outer .feedback-card .feedback-author {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
    text-align: right;
    /* Align author name to the right */
}

/* Swiper Navigation Arrows (specific to feedbacks) */
.feedback-slider-outer .feedback-button-prev,
.feedback-slider-outer .feedback-button-next {
    color: #007bff;
    /* Primary color for arrows */
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* Ensure arrows are above slides */
}

.feedback-slider-outer .feedback-button-prev::after,
.feedback-slider-outer .feedback-button-next::after {
    font-size: 20px !important;
    /* Adjust arrow icon size */
}

.feedback-slider-outer .feedback-button-prev {
    left: 20px;
}

.feedback-slider-outer .feedback-button-next {
    right: 20px;
}

/* Swiper Pagination Dots (specific to feedbacks) */
.feedback-slider-outer .feedback-pagination.swiper-pagination-bullets {
    bottom: 20px;
}

.feedback-slider-outer .feedback-pagination .swiper-pagination-bullet {
    background-color: #ccc;
    opacity: 0.8;
}

.feedback-slider-outer .feedback-pagination .swiper-pagination-bullet-active {
    background-color: #007bff;
    /* Active dot color */
    opacity: 1;
}

/* Message for no feedbacks */
.no-feedbacks-message {
    text-align: center;
    color: #777;
    font-size: 1.2em;
    margin-top: 20px;
    padding: 0 20px;
    /* Add some padding for better appearance */
}

/* Responsive Adjustments for Swiper (Example, refine as needed) */
@media (max-width: 767px) {

    .feedback-slider-outer .feedback-button-prev,
    .feedback-slider-outer .feedback-button-next {
        top: auto;
        bottom: 60px;
        /* Move arrows below the slider on small screens */
        transform: none;
    }

    .feedback-slider-outer .feedback-button-prev {
        left: 35%;
        /* Adjust positioning for small screens */
        right: auto;
    }

    .feedback-slider-outer .feedback-button-next {
        right: 35%;
        /* Adjust positioning for small screens */
        left: auto;
    }
}

@media (max-width: 480px) {
    .feedback-slider-outer .feedback-button-prev {
        left: 20%;
    }

    .feedback-slider-outer .feedback-button-next {
        right: 20%;
    }
}

/* Feedback Page Styles */
.feedback-hero {
    background-color: var(--gray-color);
    padding: 60px 0;
    text-align: center;
}

.feedback-hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feedback-hero p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.feedback-content {
    display: flex;
    gap: 30px;
    padding: 50px 0;
    align-items: flex-start;
    /* Align items to the top */
}

.feedback-form-container {
    flex: 2;
}

.feedback-info-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feedback-form-card {
    background-color: var(--primary-color);
    color: white;
    position: relative;
    /* For icon positioning */
}

.feedback-form-card .card-icon {
    position: absolute;
    top: -25px;
    /* Adjust as needed to position outside the card */
    left: 30px;
    background-color: white;
    color: var(--primary-color);
    font-size: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feedback-form-card h3 {
    font-size: 24px;
    margin-top: 20px;
    /* Space for the absolute icon */
    margin-bottom: 10px;
}

.feedback-form-card p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.feedback-form {
    background-color: white;
    padding: 30px;
    margin: 20px -30px -30px;
    /* Adjust to extend to the edges of the parent card */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.feedback-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.feedback-form .form-group {
    flex: 1;
    margin-bottom: 0;
    /* Reset default margin-bottom */
}

.feedback-form .form-group label {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feedback-form .form-group label span {
    color: var(--primary-color);
    /* For the asterisk */
}

.feedback-form .form-group input,
.feedback-form .form-group textarea,
.feedback-form .form-group select {
    /* Added select here */
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    color: var(--text-color);
    background-color: var(--light-color);
    /* Light background for inputs */
}

/* Specific styling for the select dropdowns */
.feedback-form .form-group select {
    -webkit-appearance: none;
    /* Remove default arrow for Chrome/Safari */
    -moz-appearance: none;
    /* Remove default arrow for Firefox */
    appearance: none;
    /* Remove default arrow for modern browsers */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    cursor: pointer;
    padding-right: 40px;
    /* Make space for the custom arrow */
}

.feedback-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(158, 43, 60, 0.2);
    /* Light primary color shadow on focus */
}


.feedback-form .phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--light-color);
}

/* Styling for the country code select within the phone input group */
.feedback-form .phone-input-group select#country-code {
    flex: 0 0 auto;
    /* Prevent it from growing, take only necessary space */
    width: auto;
    /* Allow content to dictate width */
    border: none;
    /* Remove border as parent has it */
    border-right: 1px solid var(--border-color);
    /* Add separator */
    border-radius: 4px 0 0 4px;
    /* Rounded corners only on left */
    padding: 12px 10px 12px 40px;
    /* Adjusted padding for flag icon */
    background-color: #eee;
    /* Light background for the code select */
    color: var(--secondary-color);
    font-weight: 500;
    -webkit-appearance: none;
    /* Remove default arrow for Chrome/Safari */
    -moz-appearance: none;
    /* Remove default arrow for Firefox */
    appearance: none;
    /* Remove default arrow for modern browsers */
    background-image: url('https://placehold.co/24x16/cccccc/333333?text=FLAG');
    /* Placeholder flag image */
    background-repeat: no-repeat;
    background-position: 10px center;
    /* Position flag icon */
    background-size: 24px 16px;
    /* Size of the flag icon */
    cursor: pointer;
}

.feedback-form .phone-input-group select#country-code:focus {
    outline: none;
    border-color: var(--border-color);
    /* Keep parent border color on focus */
    box-shadow: none;
    /* No shadow for this specific select on focus */
}


.feedback-form .phone-input-group input {
    border: none;
    flex: 1;
    padding: 12px 15px;
    background-color: transparent;
    /* Inherit from parent */
}

.feedback-form textarea {
    min-height: 120px;
    resize: vertical;
}

.feedback-form .char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

.feedback-form .checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 30px;
}

.feedback-form .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
    /* Override full width */
}

.feedback-form .checkbox-group label {
    margin-bottom: 0;
    font-size: 15px;
    color: var(--text-color);
    cursor: pointer;
}

/* Star Rating Styles */
.feedback-form .stars {
    font-size: 24px;
    color: #FFD700;
    /* Gold color for stars */
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 15px;
}

.feedback-form .stars .far {
    color: #ccc;
    /* Outline color for unselected stars */
}

.feedback-form .stars .fas {
    color: #FFD700;
    /* Filled color for selected stars */
}


/* Info Cards in Sidebar */
.info-card {
    text-align: center;
    position: relative;
    padding-top: 70px;
    /* Increased space to prevent overlap */
}

.info-card .card-icon {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(158, 43, 60, 0.1);
    color: var(--primary-color);
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


.info-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Help Card in Sidebar */
.help-card {
    text-align: center;
}

.help-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.help-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.help-options .btn {
    width: 100%;
    padding: 12px 0;
    background-color: var(--gray-color);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Re-added gap for spacing between icon and text */
}

.help-options .btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Responsive Adjustments for Feedback Page */
@media (max-width: 992px) {
    .feedback-content {
        flex-direction: column;
        align-items: center;
    }

    .feedback-form-container,
    .feedback-info-sidebar {
        flex: none;
        /* Reset flex-grow */
        width: 100%;
    }
}

@media (max-width: 768px) {
    .feedback-hero h1 {
        font-size: 30px;
    }

    .feedback-hero p {
        font-size: 16px;
    }

    .feedback-form .form-row {
        flex-direction: column;
        gap: 0;
        /* Remove gap when stacking */
    }

    .feedback-form .form-group {
        margin-bottom: 20px;
        /* Add back margin for stacked groups */
    }

    .feedback-form-card .card-icon {
        left: 50%;
        transform: translateX(-50%);
    }

    .feedback-form-card h3 {
        text-align: center;
    }

    .feedback-form-card p {
        text-align: center;
    }

    .feedback-form {
        margin: 20px -20px -20px;
        /* Adjust for smaller screens */
    }
}

.map-section {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    font-size: 20px;
}

.contact-info-index-page .info-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    /* slightly smaller circle */
    height: 36px;
    font-size: 16px;
    border-radius: 50%;
    background-color: #eecfd3;
    /* matches your theme */
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    text-decoration: none;
    /* removes underline from <a> */
}

.contact-info.contact-info-index-page {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    /* reduced from 40px */
    padding: 20px 25px;
    /* reduced padding */
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 30px auto;
    font-size: 14px;
    /* smaller base font size */
}

.contact-info-index-page .info-item {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: 280px;
    justify-content: flex-start;
    text-align: left;
}

.contact-info-index-page .info-item h4 {
    font-size: 16px;
    /* smaller heading */
    margin-bottom: 4px;
}

.contact-info-index-page .info-item p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* TARGETING FOR RIGHT ALIGNMENT (Address and Email) */
/* This block explicitly targets the Address (2nd child) and Email (4th child) */
.contact-info-index-page .info-item:nth-child(2),
.contact-info-index-page .info-item:nth-child(4) {
    flex-direction: row-reverse;
    margin-left: auto;
    /* push the entire item to the right */
    text-align: right;
}


.contact-info-index-page .info-item:nth-child(2) .icon,
.contact-info-index-page .info-item:nth-child(4) .icon {
    margin-left: 10px;
}



/* Media queries for responsiveness for the index page */
/* Mobile-specific styles */
@media (max-width: 768px) {
    .contact-info.contact-info-index-page {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding: 25px;
        width: 90%;
        margin: 0 auto;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        overflow: hidden;
    }

    .contact-info-index-page .info-item {
        flex-direction: row !important;
        justify-content: flex-start;
        text-align: left !important;
        width: 100%;
        max-width: 100%;
        margin-left: 0 !important;
        box-sizing: border-box;
        flex-wrap: wrap;
        min-width: 0;
    }

    .contact-info-index-page .info-item p {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .contact-info-index-page .info-item .icon {
        margin-right: 15px;
        margin-left: 0;
    }

    /* Reset row-reverse for Address and Email on small screens */
    .contact-info-index-page .info-item:nth-child(2),
    .contact-info-index-page .info-item:nth-child(4) {
        flex-direction: row !important;
        text-align: left !important;
        margin-left: 0 !important;
    }

    .contact-info-index-page .info-item:nth-child(2) .icon,
    .contact-info-index-page .info-item:nth-child(4) .icon {
        margin-left: 0;
        margin-right: 15px;
    }
}


.feedback-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.feedback-card:hover {
    transform: translateY(-4px);
}

.promise-card-wrapper {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
}


.promise-banner {
    text-align: center;
    padding: 2rem 1rem 1rem;
    background: #f9f9f9;
}

.promise-banner h2 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.promise-list {
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
  .promise-banner h2 {
    font-size: 2rem;
  }

  .promise-list {
    font-size: 1.5rem;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .promise-banner h2 {
    font-size: 1.6rem;
  }

  .promise-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
  }
}