:root {
    --clr-sand: #fdfbf7;
    --clr-sand-dark: #f0e6d6;
    --clr-gold: #000;
    --clr-gold-light: #e6c587;
    --clr-amber: #b97a29;
    --clr-brown: #3e2723;
    --clr-black: #121212;
    --clr-white: #a07d3d;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --trans-fast: 0.3s ease;
    --trans-slow: 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-black);
    background-color: var(--clr-sand);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-sand);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-img {
    width: 80px;
    animation: preloader-fade 1.5s infinite ease-in-out;
}

@keyframes preloader-fade {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--clr-brown);
}

p {
    margin-bottom: 1rem;
    color: #444;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 100px 0;
}

.bg-sand {
    background-color: var(--clr-sand-dark);
}

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

/* Typography Utilities */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: var(--clr-gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--trans-fast);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--clr-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--clr-white);
    color: var(--clr-brown);
}

.btn-secondary:hover {
    background-color: #f0e6d6;
    color: #4d360f;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
}

.btn-outline:hover {
    background: var(--clr-gold);
    color: var(--clr-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--trans-fast);
    padding: 20px 0;
}

.header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: var(--clr-white);
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--trans-fast);
}

.header.scrolled .logo {
    color: var(--clr-brown);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.header.scrolled .nav-link {
    color: #393336;
    font-weight: 400;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--clr-gold);
    transition: var(--trans-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--clr-white);
}

.header.scrolled .hamburger .bar {
    background-color: var(--clr-black);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('img/banner2.jpg');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    /* Parallax effect */
    color: var(--clr-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(62, 39, 35, 0.6)); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 800px;
    margin-top: -100px;
    margin-left: 43%;
    margin-right: auto;
}

.hero-title {
    font-size: 4rem;
    color: #643317;
    margin-bottom: 10px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 5px;
    color: #3a3a39;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 14px;
    margin-bottom: 15px;
    color: #50301e;
    max-width: 450px;
}

.hero-desc:last-of-type {
    margin-bottom: 40px;
}

/* Desert Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider .shape-fill {
    fill: var(--clr-sand);
}

/* About Section - Desert Sand Theme */
.desert-theme {
    background: linear-gradient(180deg, var(--clr-sand) 0%, #eaddc5 100%);
    position: relative;
    overflow: hidden;
}

.about-hero {
    margin-bottom: 60px;
}

.subtitle {
    display: block;
    color: var(--clr-amber);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.title-desert {
    font-size: 3rem;
    color: var(--clr-brown);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.underline-sand {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-amber), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.about-variety-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.av-image-wrapper {
    position: relative;
    border-radius: 12px;
    padding: 20px 0 0 20px;
}

.av-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 3px solid var(--clr-amber);
    border-radius: 12px;
    z-index: 0;
}

.av-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.15);
}

.av-experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--clr-brown);
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.av-years {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--clr-gold-light);
}

.av-text {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 300;
}

.av-content {
    /* background: rgba(255, 255, 255, 0.6); */
    padding: 40px;
    /* border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); */
}

.av-heading {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--clr-brown);
}

.av-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.av-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.av-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.av-icon {
    font-size: 2rem;
    background: var(--clr-sand);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(185, 122, 41, 0.2);
}

.av-feature-text h4 {
    font-size: 1.2rem;
    color: var(--clr-brown);
    margin-bottom: 5px;
}

.av-feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.btn-sand {
    background: var(--clr-amber);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--trans-fast);
    display: inline-block;
    box-shadow: 0 10px 20px rgba(185, 122, 41, 0.3);
}

.btn-sand:hover {
    background: var(--clr-brown);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(62, 39, 35, 0.3);
}

.av-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.av-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--trans-slow);
    z-index: 1;
}

.av-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--clr-amber);
    transition: var(--trans-fast);
}

.av-card:hover {
    transform: translateY(-10px);
}

.av-card:hover::before {
    height: 100%;
    z-index: -1;
}

.av-card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--clr-brown);
    transition: var(--trans-fast);
}

.av-card-content p {
    color: #666;
    transition: var(--trans-fast);
}

.av-card:hover .av-card-content h4,
.av-card:hover .av-card-content p {
    color: #fff;
}

/* Collections Section */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--trans-fast);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
    padding-top: 40px;
}

.product-img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    transition: transform 0.6s ease;
    background-repeat: no-repeat;
}

.placeholder-1 {
    background-image: url('img/item11.png');
}

.placeholder-2 {
    background-image: url('img/item12.png');
}

.placeholder-3 {
    background-image: url('img/item13.png');
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 39, 35, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--trans-fast);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
    opacity: 1;
}

.product-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Contact Section Aesthetic Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    color: var(--clr-black);
}

.contact-info h3 {
    color: var(--clr-brown);
    font-size: 2rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.contact-info p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1rem;
}

.info-list li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #444;
}

.info-list li strong {
    color: var(--clr-brown);
    margin-right: 15px;
    min-width: 90px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    color: var(--clr-brown);
    border-radius: 50%;
    margin-right: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--trans-fast);
    border: 1px solid rgba(62, 39, 35, 0.2);
}

.social-icon:hover {
    background: var(--clr-brown);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.2);
}

.contact-form-wrapper {
    /* No background or padding needed for standard layout */
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 300;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(62, 39, 35, 0.2);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--trans-fast);
    background: transparent;
    color: var(--clr-brown);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--clr-brown);
}

.contact-form .btn-primary {
    background-color: transparent;
    color: var(--clr-brown);
    border: 1px solid var(--clr-brown);
    padding: 15px 40px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    transition: var(--trans-fast);
}

.contact-form .btn-primary:hover {
    background-color: var(--clr-brown);
    color: #fff;
}

.contact-50sec {
    width: 48%;
    /* Leave some space instead of exactly 50% */
    padding-bottom: 15px;
}



/* Footer */
.footer {
    /* Styles overridden by inline styles */
}

.new-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1.6fr;
    gap: 40px;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .new-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .title-desert {
        font-size: 1.6rem;
        max-width: 240px;
        margin: auto;
        margin-bottom: 15px;
    }

    .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }


}

@media (max-width: 768px) {
    .new-footer-grid {
        grid-template-columns: 1fr;
    }

}

.footer h4 {
    color: var(--clr-white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #93615133;
}

.footer-link {
    display: block;
    color: #aaa;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--clr-gold);
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

div.sep_diamond {
    content: "";
    height: 10px;
    left: 50%;
    margin: -5px auto auto -5px;
    position: absolute;
    transform: rotate(-45deg);
    width: 10px;
}

div.separator {
    border-top: 1px solid;
    clear: both;
    display: inline-block;
    position: relative;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--clr-sand-dark);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--clr-brown);
    margin-bottom: 5px;
    font-weight: 700;
}

.client-role {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.quote-icon {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: #e5e5e5;
    position: absolute;
    line-height: 1;
}

.quote-open {
    top: 30px;
    left: 40px;
}

.quote-close {
    bottom: -15px;
    right: 40px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer h4::after {
        display: none;
    }

    .footer h4 {
        margin-bottom: 0px;
    }
}

/* Responsive */
@media (max-width: 992px) {

    .about-variety-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .av-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .av-image-wrapper {
        margin-top: 30px;
        margin-left: 25px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .av-content {
        padding: 10px;
    }

}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 75px;
    }

    .hamburger {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--clr-brown);
        padding: 100px 40px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

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

    .nav-link {
        color: var(--clr-white);
        font-size: 1.2rem;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background: var(--clr-white);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background: var(--clr-white);
    }

    .header.scrolled .hamburger.active .bar {
        background: var(--clr-white);
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .hero-desc {
        display: none;
    }
}

/* Added Utility Classes from Inline CSS Extraction */
.relative-z1 {
    position: relative;
    z-index: 1;
}

.about-bg-sand-rt {
    position: absolute;
    top: 100px;
    right: -298px;
    z-index: 0;
    width: 500px;
    transform: rotate(-50deg);
}

.about-bg-sand-lb {
    position: absolute;
    bottom: -18px;
    left: -260px;
    z-index: 0;
    width: 500px;
    transform: rotate(-40deg);
}

.about-canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.collections-bg-sand-lb {
    position: absolute;
    bottom: -18px;
    left: -260px;
    z-index: 0;
    width: 500px;
    transform: rotate(-40deg);
}

.section-title-narrow {
    max-width: 562px;
    margin: auto;
    padding-bottom: 50px;
}

.sep-brown {
    border-color: #2B231D;
    width: 100px;
}

.bg-brown {
    background-color: #2B231D;
}

.btn-full-mt10 {
    width: 100%;
    margin-top: 10px;
}

.w-100 {
    width: 100%;
}

.testimonials-title-wrapper {
    margin: auto;
    padding-bottom: 50px;
    text-align: left;
}

.testimonials-title {
    font-size: 2.8rem;
    margin-top: 20px;
    line-height: 1.1;
}

.testimonials-subtitle {
    margin-top: 15px;
    font-size: 1.05rem;
    color: #555;
}

.contact-section-bg {
    background-color: var(--clr-sand-dark);
    position: relative;
    overflow: hidden;
}

.contact-bg-sand-lt {
    position: absolute;
    top: 0;
    left: -200px;
    z-index: 0;
    width: 400px;
    transform: rotate(180deg);
    opacity: 1;
    pointer-events: none;
}

.contact-bg-sand-rb {
    position: absolute;
    bottom: 0;
    right: -200px;
    z-index: 0;
    width: 400px;
    opacity: 1;
    pointer-events: none;
}

.contact-title-wrapper {
    max-width: 562px;
    margin: auto;
    padding-bottom: 0px;
    text-align: left;
}

.icon-lg {
    font-size: 1.5rem;
    margin-right: 10px;
}

.link-inherit {
    display: inline;
    margin: 0;
    padding: 0;
    color: inherit;
}

.mt-30 {
    margin-top: 30px;
}

.icon-xl {
    font-size: 1.5rem;
}

.footer-styled {
    position: relative;
    overflow: hidden;
    padding: 70px 0 25px 0;
    background-color: #fcf9f2;
}

.footer-leaf-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('img/bgedfg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

.brand-styled {
    color: #444;
    padding-right: 20px;
}

.footer-logo-img {
    width: 150px;
    margin-bottom: 5px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.contact-styled {
    color: #000;
    padding-top: 5px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #111;
    font-weight: 700;
}

.footer-legal-link {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.subscribe-styled {
    padding-top: 5px;
}

.subscribe-form-styled {
    display: flex;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    max-width: 400px;
}

.subscribe-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 0.95rem;
    background: #fff;
    outline: none;
    color: #333;
}

.subscribe-btn {
    padding: 14px 30px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: var(--clr-brown);
}

.subscribe-desc {
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
    line-height: 1.5;
    margin: 0;
    max-width: 400px;
}

.footer-bottom-styled {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    padding-top: 25px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-50sec {
        width: 100%;
        padding-right: 0;
    }

    .hero-content {
        margin-left: 40%;
        margin-right: 0%;
        margin-top: -90px;
    }

    .about-bg-sand-rt,
    .about-bg-sand-lb,
    .collections-bg-sand-lb,
    .contact-bg-sand-lt,
    .contact-bg-sand-rb {
        display: none;
    }

    .section-title-narrow {
        max-width: 290px;
    }

    /* Hide decorative sands on smaller screens */
}

@media (max-width: 768px) {
    .testimonials-title-wrapper {
        text-align: left;
        padding-bottom: 0px;
    }

    .testimonials-subtitle {
        max-width: 290px;
    }

    .contact-info p {
        max-width: 300px;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .contact-title-wrapper {
        text-align: left;
    }

    .contact-grid {
        text-align: left;
    }

    .info-list li {
        justify-content: unset;
    }

    .social-links {
        justify-content: unset;
        display: flex;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .footer-heading {
        margin-top: 0px;
    }

    .brand-styled {
        padding-right: 0;
        text-align: left;
    }

    .footer-brand-desc {
        margin: 0;
    }

    .contact-styled {
        text-align: left;
    }

    .footer-legal-link {
        justify-content: flex-start;
    }

    .subscribe-styled {
        text-align: left;
    }

    .subscribe-form-styled {
        margin: 0 0 10px 0;
        flex-direction: column;
        gap: 10px;
    }

    .subscribe-btn {
        width: 100%;
    }

    .subscribe-desc {
        margin: 0;
    }

    .hero {
        height: 45vh;
        min-height: 370px;
    }
}