/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', serif;
    line-height: 1.6;
    color: #333;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-secondary {
    background: transparent;
    color: #bc9b51;
    border-color: #bc9b51;
}

.btn-secondary:hover {
    color: #bc9b51;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(188, 155, 81, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    flex: 1;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    opacity: 0;
    transform: translateY(-10px);
}

.nav-logo-img.revealed {
    opacity: 1;
    transform: translateY(0);
}

.nav-logo:hover .nav-logo-img {
    transform: translateY(0) scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-logo:hover .nav-logo-img.revealed {
    transform: translateY(0) scale(1.05);
}

.nav-right {
    flex: 1;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #bc9b51;
    transition: width 0.3s ease;
}

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

.btn-order {
    background: #bc9b51;
    color: white;
    border: 2px solid #bc9b51;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-order:hover {
    background: transparent;
    color: #bc9b51;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(188, 155, 81, 0.3);
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(100%);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link:hover {
    background: #bc9b51;
    color: white;
    transform: translateY(-2px);
}

.mobile-contact-btn {
    background: #bc9b51;
    color: white;
    font-weight: 600;
}

.mobile-contact-btn:hover {
    background: #a68a47;
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("images/biscottino_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    padding: 140px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    width: 100%;
}

.hero-logo-img {
    width: 500px;
    height: 500px;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 10;
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d7e6f1" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23d7e6f1" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23d7e6f1" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23d7e6f1" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23d7e6f1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #bc9b51;
    line-height: 1.1;
    font-weight: 400;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.container h2 {
    margin-bottom: 2rem;
    color: #bc9b51;
}

.container p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   GALLERY / SLIDESHOW
   ======================================== */
.product-slideshow {
    padding: 80px 0;
    background: #f8f9fa;
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.slideshow-wrapper {
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
}

.slideshow-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.slide-item {
    flex: 0 0 300px;
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slide-item:hover {
    transform: scale(1.05);
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #bc9b51;
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-btn:hover {
    background: #bc9b51;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slideshow-prev {
    left: 20px;
}

.slideshow-next {
    right: 20px;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #bc9b51;
}

#lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.about-cookie-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    transition: transform 0.3s ease;
}

.about-cookie-image:hover {
    transform: scale(1.02);
}

.features {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #d7e6f1;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(188, 155, 81, 0.2);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(188, 155, 81, 0.2);
    background: #bc9b51;
    color: white;
}

.feature:hover i,
.feature:hover h4,
.feature:hover p {
    color: white;
}

.feature i {
    font-size: 2rem;
    color: #bc9b51;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.feature h4 {
    margin-bottom: 0.8rem;
    color: #333;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    line-height: 1.4;
}

/* ========================================
   OFFERINGS SECTION
   ======================================== */
.offerings-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
}

.customizable-section,
.individual-section,
.holiday-section {
    background: #fff;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(188, 155, 81, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.customizable-section::before,
.individual-section::before,
.holiday-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #bc9b51;
}

.customizable-section:hover,
.individual-section:hover,
.holiday-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.customizable-section h3,
.individual-section h3,
.holiday-section h3 {
    color: #bc9b51;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.cookie-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cookie-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    margin: auto;
    width: 100%;
    text-align: center;
}

.cookie-type span {
    text-align: center;
    font-weight: 500;
    color: #bc9b51;
    transition: color 0.3s ease;
    margin: auto;
}

.cookie-type i {
    font-size: 1.5rem;
    color: #bc9b51;
    transition: color 0.3s ease;
}

.cookie-list-offering {
    text-align: center;
    margin: 1rem;
    color: #6a6a6a;
}

.holiday-boxes-image, .individual-gifting-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gift-icon {
    font-size: 2rem;
    color: #bc9b51;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(188, 155, 81, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #bc9b51;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    background: #d7e6f1;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.faq-question i {
    color: #bc9b51;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(188, 155, 81, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: #bc9b51;
    color: white;
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #d7e6f1;
}

.faq-item.active .faq-answer {
    padding: 2rem 2.5rem;
    max-height: 300px;
}

.faq-answer p {
    margin: auto;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer a {
    color: #bc9b51;
    text-decoration: none;
    font-weight: 500;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.cookie-list-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #d7e6f1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #bc9b51;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item i {
    font-size: 2rem;
    color: #bc9b51;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-item a {
    color: #bc9b51;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    background: #fff;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid #d7e6f1;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #bc9b51;
}

.contact-cta h3 {
    color: #bc9b51;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-cta ol {
    text-align: left;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
}

.contact-cta ol li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.contact-steps {
    font-size: 1.1rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-right {
        display: none;
    }
    
    .nav-left {
        display: none;
    }
    
    .nav-container {
        justify-content: center;
        position: relative;
        padding: 0 20px;
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-logo-img {
        height: 50px;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: 100vh;
    }
    
    .hero-logo-img {
        width: 350px;
        height: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100vw;
    }
    
    .slide-item {
        flex: 0 0 280px;
    }
    
    .slideshow-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .slideshow-prev {
        left: 15px;
    }
    
    .slideshow-next {
        right: 15px;
    }
    
    .features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .feature {
        max-width: 100%;
        width: 100%;
        padding: 2rem;
    }
    
    .about-text p {
        line-height: 1.6;
    }
    
    .about-cookie-image {
        max-height: 250px;
    }
    
    .offerings-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100vw;
    }
    
    .customizable-section,
    .individual-section,
    .holiday-section {
        padding: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .contact-info {
        order: 1;
        width: 100%;
    }
    
    .contact-cta {
        order: 2;
        padding: 2rem;
        width: 100%;
        box-sizing: border-box;
        margin-top: 1rem;
    }
    
    .contact-item {
        padding: 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-steps {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
        width: 100%;
    }
    
    .contact-steps ol {
        padding-left: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .nav-logo-img {
        height: 45px;
    }
    
    .hero {
        padding: 80px 15px 40px;
    }
    
    .hero-logo-img {
        width: 280px;
        height: 280px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100vw;
    }
    
    .slide-item {
        flex: 0 0 250px;
    }
    
    .slideshow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slideshow-prev {
        left: 10px;
    }
    
    .slideshow-next {
        right: 10px;
    }
    
    .features {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .about-text p {
        line-height: 1.5;
    }
    
    .about-cookie-image {
        max-height: 200px;
    }
    
    .customizable-section,
    .individual-section,
    .holiday-section {
        padding: 1.5rem;
    }
    
    .cookie-type {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .cookie-list-offering {
        font-size: 0.95rem;
        margin: 0.8rem;
    }
    
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-cta {
        order: 2;
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
        margin-top: 0.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-steps {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }
    
    .mobile-nav-link {
        font-size: 1.3rem;
        padding: 0.8rem 1.5rem;
    }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

.btn:focus {
    outline: 2px solid #bc9b51;
    outline-offset: 2px;
}

@media (prefers-contrast: high) {
    .btn-secondary {
        background: #fff;
        color: #000;
        border-color: #000;
    }
}