/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-warm: #E67E50;
    --secondary-warm: #D4956C;
    --warm-blue: #6BA3C4;
    --soft-coral: #F4A582;
    --warm-cream: #FFF5E6;
    --gentle-peach: #FFE4D1;
    --warm-gray: #8B7E74;
    --dark-warm: #5D4E37;
    --white: #FFFFFF;
    --text-warm: #4A3F35;
    --accent-gold: #D4A574;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-warm);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    line-height: 1.3;
    color: var(--dark-warm);
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-warm);
}

.logo img {
    height: 100px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--warm-gray);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-warm);
}

/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-menu .dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--warm-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-menu .dropdown-menu a:hover {
    background-color: var(--warm-cream);
    color: var(--primary-warm);
    padding-left: 25px;
}

/* Language Toggle Button */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--warm-cream);
    border: 2px solid var(--primary-warm);
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-warm);
    z-index: 1002;
    margin-left: 20px;
}

.language-toggle:hover {
    background: var(--primary-warm);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(230, 126, 80, 0.3);
}

.language-toggle-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-toggle-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Language transition animation */
.language-transition {
    animation: fadeTranslate 0.4s ease;
}

@keyframes fadeTranslate {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 3px;
    background-color: var(--dark-warm);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

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

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 180px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/colorful-paper-binder-organizer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.85) contrast(1.1) saturate(1.2);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    border-radius: 50%;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 10%;
    animation: float 25s ease-in-out infinite;
}



@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 126, 80, 0.85) 0%, rgba(107, 163, 196, 0.75) 50%, rgba(212, 149, 108, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 149, 108, 0.3) 0%, rgba(230, 126, 80, 0.2) 50%, rgba(107, 163, 196, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
}



.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 35px;
    color: var(--white);
    text-shadow: 3px 6px 20px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.tagline {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 55px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.98);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-group {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    letter-spacing: 0.5px;
}

.cta-primary {
    background-color: var(--white);
    color: var(--primary-warm);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    background-color: var(--warm-cream);
}

.cta-secondary {
    background-color: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.hero-feature span {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.welcome-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-warm);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-warm);
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-warm);
    font-weight: 600;
    padding: 20px;
    background-color: var(--warm-cream);
    border-left: 4px solid var(--primary-warm);
    margin: 30px 0;
}

.closing {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--dark-warm);
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Guide Section */
.guide-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--warm-cream), var(--white));
}

.guide-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-warm);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel Container */
.carousel-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    padding: 20px 0;
}

.guide-grid {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.carousel-container:hover .guide-grid {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.guide-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.guide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.guide-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    color: var(--primary-warm);
}

.guide-icon svg {
    width: 100%;
    height: 100%;
}

.guide-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-warm);
}

.guide-item p {
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.benefits-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-warm);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.benefit-content {
    padding: 30px;
}

.benefit-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-warm);
}

.benefit-content p {
    color: var(--warm-gray);
    line-height: 1.7;
}

.benefits-list {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background-color: var(--warm-cream);
    border-radius: 10px;
    border-left: 5px solid var(--primary-warm);
}

.benefits-list h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-warm);
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-warm);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-warm);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Products Overview Section */
.products-overview-section {
    padding: 100px 20px;
    background-color: var(--warm-cream);
}

.products-overview-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-warm);
}

.products-overview-section .section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.product-overview-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-warm);
}

.product-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.product-overview-card h3 {
    font-size: 1.6rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.product-overview-price {
    font-size: 2.2rem;
    color: var(--primary-warm);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-overview-card p {
    color: var(--text-warm);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.product-overview-link {
    display: inline-block;
    color: var(--primary-warm);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.product-overview-link:hover {
    color: var(--white);
    background-color: var(--primary-warm);
    transform: translateX(5px);
}

.products-overview-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design for Products Overview */
@media (max-width: 768px) {
    .products-overview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-overview-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .products-overview-section h2 {
        font-size: 2rem;
    }
    
    .product-overview-card h3 {
        font-size: 1.4rem;
    }
    
    .product-overview-price {
        font-size: 1.8rem;
    }
}

/* Who Section */
.who-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100%);
    color: var(--white);
}

.who-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.who-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.who-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.who-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.who-item p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-section {
    padding: 100px 20px;
    background-color: var(--gentle-peach);
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-warm);
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-warm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-warm);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-warm);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-warm);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 80, 0.3);
}

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-warm);
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-warm);
}

.info-item a {
    color: var(--primary-warm);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-warm);
}

.quote-box {
    margin-top: 40px;
    padding: 25px;
    background-color: var(--warm-cream);
    border-left: 4px solid var(--primary-warm);
    border-radius: 5px;
}

.quote-box p {
    font-style: italic;
    color: var(--text-warm);
    line-height: 1.6;
}

.quote-author {
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-warm);
    text-align: right;
}

/* Footer */
.footer {
    background-color: var(--dark-warm);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-top: 10px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

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

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .hero-features {
        gap: 20px;
    }

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

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

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

@media (max-width: 968px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .language-toggle {
        order: 2;
        margin-left: auto;
        margin-right: 10px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .mobile-menu-toggle {
        order: 3;
    }

    .nav-menu {
        order: 4;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 130px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 130px);
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid var(--warm-cream);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 10px;
        font-size: 1.1rem;
    }

    /* Mobile Dropdown Styles */
    .nav-menu .dropdown-toggle {
        padding: 15px 10px;
        font-size: 1.1rem;
    }

    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: var(--warm-cream);
    }

    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .nav-menu .dropdown-menu a {
        padding: 12px 10px 12px 30px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .nav-menu .dropdown-menu a:hover {
        padding-left: 35px;
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .hero-logo {
        width: 120px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .hero-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .benefits-grid,
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust carousel for mobile */
    .guide-grid {
        animation: scroll 40s linear infinite;
    }
    
    .guide-item {
        min-width: 280px;
        max-width: 280px;
    }

    .logo span {
        display: none;
    }

    .nav-menu {
        top: 100px;
        height: calc(100vh - 100px);
    }

    section {
        padding: 60px 20px;
    }

    .welcome-section,
    .guide-section,
    .benefits-section,
    .who-section,
    .contact-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

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

    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .hero-feature span {
        font-size: 0.85rem;
    }

    h2 {
        font-size: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    /* Further adjust carousel for small mobile */
    .guide-grid {
        animation: scroll 50s linear infinite;
        gap: 30px;
    }
    
    .guide-item {
        min-width: 260px;
        max-width: 260px;
        padding: 30px 20px;
    }
}

/* Intake Form Page Styles */
.page-header {
    position: relative;
    background: linear-gradient(135deg, rgba(230, 126, 80, 0.95) 0%, rgba(107, 163, 196, 0.9) 50%, rgba(212, 149, 108, 0.95) 100%);
    color: var(--white);
    padding: 160px 20px 100px;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.98);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.intake-form-section {
    padding: 80px 0;
    position: relative;
    background-color: var(--light-gray);
}

.intake-form-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/mother-daughter-outdoor-portrait.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}

.form-intro {
    width: 100%;
    margin: 0 0 50px 0;
    background-color: var(--white);
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.form-intro p:last-child {
    margin-bottom: 0;
}

.form-note {
    background-color: var(--light-blue);
    padding: 15px 20px;
    border-left: 4px solid var(--primary-blue);
    border-radius: 5px;
    margin-top: 20px;
}

.intake-form {
    width: 100%;
    margin: 0;
}

.form-section {
    background-color: var(--white);
    padding: 60px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    width: 100%;
}

.form-section > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Section-specific gradient backgrounds */
#section-2 {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15) 0%, rgba(255, 218, 224, 0.1) 100%);
}

#section-3 {
    background: linear-gradient(135deg, rgba(173, 216, 230, 0.15) 0%, rgba(224, 242, 255, 0.1) 100%);
}

#section-4 {
    background: linear-gradient(135deg, rgba(221, 160, 221, 0.15) 0%, rgba(238, 213, 238, 0.1) 100%);
}

#section-5 {
    background: linear-gradient(135deg, rgba(255, 228, 181, 0.15) 0%, rgba(255, 245, 220, 0.1) 100%);
}

#section-6 {
    background: linear-gradient(135deg, rgba(152, 251, 152, 0.15) 0%, rgba(220, 255, 220, 0.1) 100%);
}

#section-7 {
    background: linear-gradient(135deg, rgba(255, 218, 185, 0.15) 0%, rgba(255, 239, 220, 0.1) 100%);
}

#section-8 {
    background: linear-gradient(135deg, rgba(176, 196, 222, 0.15) 0%, rgba(230, 236, 245, 0.1) 100%);
}

#section-9 {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.15) 0%, rgba(255, 228, 230, 0.1) 100%);
}

.form-section-title {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-blue);
}

.form-subsection-title {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-blue);
    font-weight: 600;
}

.lives-with-entry {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-blue);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 15px;
    border-radius: 8px;
}

.form-row .form-group {
    background-color: transparent;
    padding: 0;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 1rem;
}

.required {
    color: #E53E3E;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 15px;
    border-radius: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A90E2' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: var(--primary-blue);
    background-color: var(--light-blue);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.radio-label span,
.checkbox-label span {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.radio-label input[type="radio"]:checked + span,
.checkbox-label input[type="checkbox"]:checked + span {
    color: var(--dark-blue);
    font-weight: 600;
}

.form-actions {
    text-align: center;
    padding: 40px 20px;
}

.form-actions .submit-button {
    padding: 18px 60px;
    font-size: 1.2rem;
    background-color: #28a745;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.form-actions .submit-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.form-footer-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Section Save Button Styles */
.section-save-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(23, 162, 184, 0.3);
}

.section-save-button:hover {
    background: linear-gradient(135deg, #138496 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
}

.section-save-button:active {
    transform: translateY(0);
}

.section-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments for intake form */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 20px 70px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    .intake-form-section {
        padding: 60px 20px;
    }

    .form-section {
        padding: 30px 20px;
    }

    .form-section-title {
        font-size: 1.5rem;
    }

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

    .form-actions .submit-button {
        width: 100%;
        max-width: 400px;
    }

    .section-actions {
        justify-content: center;
    }

    .section-save-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 130px 20px 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.05rem;
    }

    .form-intro {
        padding: 20px;
    }

    .form-intro p {
        font-size: 1rem;
    }

    .form-section {
        padding: 25px 15px;
    }

    .form-section-title {
        font-size: 1.3rem;
    }

    .form-subsection-title {
        font-size: 1.2rem;
    }

    .lives-with-entry {
        padding: 15px;
    }
}

/* Section Navigation */
.section-navigation {
    width: 100%;
    margin: 0 0 40px 0;
    background-color: var(--white);
    padding: 30px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-blue);
}

.section-navigation > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-navigation h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-nav-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.section-nav-btn {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.7) 0%, rgba(230, 126, 80, 0.6) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.section-nav-btn:hover {
    background: linear-gradient(135deg, rgba(230, 126, 80, 0.8) 0%, rgba(212, 165, 116, 0.8) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 80, 0.3);
}

.section-nav-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-nav-buttons {
        grid-template-columns: 1fr;
    }
}

/* Form Subheading (h4) */
.form-subheading {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-left: 15px;
    border-left: 3px solid var(--accent-teal);
}

.form-help-text {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 15px;
}

/* Additional styling for caregiver entries */
.family-member-entry {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-blue);
}

.additional-caregiver-entry {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-teal);
    border: 2px solid #e9ecef;
}

/* Section Title with Button */
.section-title-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title-with-button .form-section-title {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    flex: 1;
}

.section-divider {
    border: none;
    border-top: 3px solid var(--primary-blue);
    margin: 0 0 30px 0;
}

.add-caregiver-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #C71585;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(199, 21, 133, 0.3);
    white-space: nowrap;
}

.add-caregiver-button:hover {
    background-color: #A0156B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 21, 133, 0.4);
}

.add-caregiver-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-title-with-button {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .add-caregiver-button {
        width: 100%;
        justify-content: center;
    }
}

/* Medication Entry Styles */
.medication-entry {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-teal);
}

.medication-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
}

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

/* Specialist Entry Styles */
.specialist-entry {
    background-color: #f0f7ff;
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    margin-bottom: 30px;
    border: 2px solid var(--light-blue);
    border-left: 4px solid var(--primary-blue);
}

/* Medication Subheading (h5) */
.medication-subheading {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    padding-left: 12px;
    border-left: 3px solid var(--accent-teal);
}

/* Medications Summary Section */
.medications-summary {
    background-color: #fff9e6;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #ffd700;
    border-left: 5px solid #ffa500;
}

.medication-summary-entry {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #ffa500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.medication-summary-entry:last-child {
    margin-bottom: 0;
}

.medication-summary-entry input[readonly],
.medication-summary-entry textarea[readonly] {
    background-color: #f9f9f9;
    cursor: not-allowed;
    border-color: #d1d5db;
    color: var(--gray);
}

/* Additional responsive adjustments */
@media (max-width: 480px) {
    .medication-entry {
        padding: 15px;
    }
    
    .specialist-entry {
        padding: 20px 15px;
    }
    
    .medications-summary {
        padding: 20px 15px;
    }
    
    .medication-summary-entry {
        padding: 15px;
    }
}

/* Family Stories and Testimonials Sections */
.family-stories-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.family-stories-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-warm);
}

.family-stories-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.story-card {
    background-color: var(--warm-cream);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: var(--warm-cream);
}

.story-content {
    padding: 35px;
}

.story-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-warm);
}

.story-content .story-quote {
    font-style: italic;
    color: var(--primary-warm);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-warm);
}

.story-content p {
    color: var(--text-warm);
    line-height: 1.8;
    margin-bottom: 15px;
}

.story-author {
    font-weight: 600;
    color: var(--primary-warm);
    margin-top: 20px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gentle-peach) 0%, var(--warm-cream) 100%);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--soft-coral);
    position: absolute;
    top: 20px;
    left: 30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-warm);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--warm-cream);
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--soft-coral);
}

.testimonial-author-info h4 {
    font-size: 1.1rem;
    color: var(--dark-warm);
    margin-bottom: 5px;
}

.testimonial-author-info p {
    font-size: 0.95rem;
    color: var(--warm-gray);
}

/* Heart Icon for Family-Centric Theme */
.heart-icon {
    color: var(--soft-coral);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Warm Photo Gallery Section */
.photo-gallery-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.photo-gallery-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-warm);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .story-card,
    .testimonial-card {
        padding: 25px;
    }
}

/* Products Page Styles */
.products-section {
    padding: 80px 20px;
    background-color: var(--warm-cream);
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.products-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-warm);
    margin-bottom: 20px;
}

.products-intro p {
    font-size: 1.2rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 3px solid var(--primary-warm);
    background: linear-gradient(to bottom, var(--white) 0%, var(--gentle-peach) 100%);
}

.product-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--primary-warm);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(230, 126, 80, 0.4);
}

.product-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--warm-cream);
}

.product-header h3 {
    font-size: 1.8rem;
    color: var(--dark-warm);
    margin-bottom: 10px;
}

.product-price {
    font-size: 2.5rem;
    color: var(--primary-warm);
    font-weight: 700;
    margin-bottom: 5px;
}

.product-subtitle {
    font-size: 0.95rem;
    color: var(--warm-gray);
    font-style: italic;
    margin-top: 5px;
}

.product-content {
    flex-grow: 1;
    margin-bottom: 25px;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-warm);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-warm);
    line-height: 1.6;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-warm);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-note {
    background-color: var(--warm-cream);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-warm);
    line-height: 1.6;
    border-left: 3px solid var(--primary-warm);
}

.product-button {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background-color: var(--primary-warm);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-button:hover {
    background-color: var(--secondary-warm);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 80, 0.3);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.why-choose-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-warm);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    text-align: center;
    padding: 30px;
    background-color: var(--warm-cream);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--primary-warm);
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-choose-item h3 {
    font-size: 1.4rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.why-choose-item p {
    color: var(--text-warm);
    line-height: 1.7;
}

/* Products CTA Section */
.products-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100%);
    color: var(--white);
    text-align: center;
}

.products-cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.products-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .products-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .products-cta-buttons .cta-button {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 30px 20px;
    }
    
    .product-header h3 {
        font-size: 1.5rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
    
    .why-choose-item {
        padding: 25px 20px;
    }
}

/* Checkout Page Styles */
.cart-summary-sticky {
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 900;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
}

.cart-summary-sticky.visible {
    transform: translateY(0);
}

.cart-summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
}

.cart-label {
    font-weight: 600;
    color: var(--dark-warm);
    font-size: 1.1rem;
}

.cart-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-warm);
}

.view-cart-btn {
    padding: 10px 25px;
    background-color: var(--primary-warm);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-cart-btn:hover {
    background-color: var(--secondary-warm);
    transform: translateY(-2px);
}

.checkout-products-section {
    padding: 80px 20px;
    background-color: var(--warm-cream);
}

.checkout-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.checkout-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.checkout-intro p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    font-style: italic;
}

.main-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.checkout-product-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.checkout-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.checkout-product-card.featured {
    border: 3px solid var(--primary-warm);
}

.product-highlight {
    color: var(--primary-warm);
    font-weight: 600;
    margin-top: 15px;
}

.product-actions {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-actions label {
    font-weight: 600;
    color: var(--dark-warm);
}

.qty-select {
    padding: 10px 15px;
    border: 2px solid var(--warm-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-select:focus {
    outline: none;
    border-color: var(--primary-warm);
}

.qty-select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.addons-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.specialized-guides-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.specialized-guides-section h2 {
    font-size: 2rem;
    color: var(--dark-warm);
    margin-bottom: 30px;
    text-align: center;
}

.addons-section h2 {
    font-size: 2rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.addons-note {
    font-size: 1.1rem;
    color: var(--warm-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.addon-card {
    background-color: var(--gentle-peach);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--soft-coral);
    transition: all 0.3s ease;
}

.addon-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.addon-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--soft-coral);
}

.addon-header h3 {
    font-size: 1.6rem;
    color: var(--dark-warm);
    margin-bottom: 10px;
}

.addon-price {
    font-size: 1.8rem;
    color: var(--primary-warm);
    font-weight: 700;
}

.addon-description {
    margin-bottom: 20px;
}

.addon-description p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.addon-description ul {
    list-style: none;
    margin: 15px 0;
}

.addon-description li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.addon-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-warm);
    font-weight: bold;
    font-size: 1.3rem;
}

.addon-note {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    margin-top: 15px;
    border-left: 3px solid var(--primary-warm);
}

.addon-disabled-msg {
    display: none;
    color: var(--warm-gray);
    font-style: italic;
    font-size: 0.95rem;
}

.qty-select:disabled + .addon-disabled-msg {
    display: inline;
}

.contact-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--warm-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--primary-warm);
    transform: translateY(-2px);
}

.promotions-section {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.promotion-box {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-warm) 100%);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.promotion-box h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.promotion-box p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.promotion-box strong {
    font-size: 1.4rem;
}

.promo-detail {
    font-size: 1rem;
    opacity: 0.95;
    font-style: italic;
}

.cart-review-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.cart-review-section h2 {
    font-size: 2.5rem;
    color: var(--dark-warm);
    text-align: center;
    margin-bottom: 40px;
}

.cart-items {
    max-width: 900px;
    margin: 0 auto 40px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--warm-gray);
    font-size: 1.2rem;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: var(--warm-cream);
    border-radius: 10px;
    margin-bottom: 20px;
    gap: 20px;
}

.cart-item-details h4 {
    font-size: 1.3rem;
    color: var(--dark-warm);
    margin-bottom: 8px;
}

.cart-item-details p {
    color: var(--warm-gray);
    font-size: 1rem;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-warm);
}

.remove-item {
    padding: 8px 16px;
    background-color: #dc3545;
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.cart-totals {
    max-width: 600px;
    margin: 0 auto 40px;
    background-color: var(--gentle-peach);
    padding: 30px;
    border-radius: 12px;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-row:last-child {
    border-bottom: none;
}

.discount-row {
    color: #28a745;
    font-weight: 600;
}

.total-row {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-warm);
    border-top: 3px solid var(--primary-warm);
    padding-top: 20px;
    margin-top: 10px;
}

.shipping-info {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--warm-cream);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--warm-blue);
}

.shipping-info h3 {
    font-size: 1.4rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.shipping-info p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.payment-section {
    padding: 80px 20px;
    background-color: var(--gentle-peach);
}

.payment-section h2 {
    font-size: 2.5rem;
    color: var(--dark-warm);
    text-align: center;
    margin-bottom: 40px;
}

.payment-cards {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 25px;
    background-color: var(--white);
    border-radius: 10px;
}

.payment-cards p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.card-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card-logo {
    padding: 10px 20px;
    background-color: var(--warm-cream);
    border: 2px solid var(--warm-gray);
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark-warm);
}

.checkout-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.checkout-form .form-section {
    margin-bottom: 40px;
    padding: 0;
    box-shadow: none;
}

.checkout-form h3 {
    font-size: 1.8rem;
    color: var(--dark-warm);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-warm);
}

.shipping-toggle {
    margin-bottom: 25px;
}

.place-order-btn {
    width: 100%;
    padding: 20px;
    background-color: #28a745;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.place-order-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--warm-gray);
    font-size: 0.95rem;
    font-style: italic;
}

/* Referral Program Page Styles */
.referral-overview-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.referral-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.referral-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-warm);
    margin-bottom: 20px;
}

.referral-intro p {
    font-size: 1.2rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

.referral-hero-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.referral-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--warm-cream), var(--white));
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-warm);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(230, 126, 80, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-warm);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Referral Tiers Section */
.referral-tiers-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.referral-tiers-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-warm);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.tier-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.tier-card.tier-featured {
    border-color: var(--primary-warm);
    box-shadow: 0 8px 30px rgba(230, 126, 80, 0.2);
}

.tier-header {
    padding: 35px 30px;
    color: var(--white);
    text-align: center;
}

.tier-individuals {
    background: linear-gradient(135deg, var(--warm-blue) 0%, var(--primary-warm) 100%);
}

.tier-nonprofit {
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--accent-gold) 100%);
}

.tier-agency {
    background: linear-gradient(135deg, var(--secondary-warm) 0%, var(--warm-blue) 100%);
}

.tier-header h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.tier-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.tier-content {
    padding: 40px 30px;
}

.tier-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: var(--warm-cream);
    border-radius: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    color: var(--primary-warm);
    flex-shrink: 0;
}

.tier-benefit p {
    color: var(--text-warm);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.tier-note {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--gentle-peach);
    border-radius: 10px;
    border-left: 4px solid var(--primary-warm);
    font-style: italic;
    color: var(--text-warm);
    line-height: 1.7;
}

/* Compliance Section */
.compliance-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gentle-peach) 0%, var(--warm-cream) 100%);
}

.compliance-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-warm);
}

.compliance-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.compliance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--primary-warm);
}

.compliance-icon svg {
    width: 100%;
    height: 100%;
}

.compliance-content h3 {
    font-size: 2rem;
    color: var(--dark-warm);
    margin-bottom: 50px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compliance-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.compliance-item h4 {
    font-size: 1.3rem;
    color: var(--primary-warm);
    margin-bottom: 15px;
}

.compliance-item p {
    color: var(--text-warm);
    line-height: 1.7;
}

/* Referral Contact Section */
.referral-contact-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.referral-contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-warm);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 60px auto;
}

.contact-method-card {
    background-color: var(--warm-cream);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-warm);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-method-card h3 {
    font-size: 1.6rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-detail a {
    color: var(--primary-warm);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--secondary-warm);
}

.contact-description {
    color: var(--text-warm);
    line-height: 1.7;
}

/* Referral Form Section */
.referral-form-section {
    max-width: 800px;
    margin: 60px auto 0;
    background-color: var(--gentle-peach);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.referral-form-section h3 {
    font-size: 2rem;
    color: var(--dark-warm);
    margin-bottom: 30px;
    text-align: center;
}

.referral-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.referral-form .form-group {
    margin-bottom: 25px;
}

.referral-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-warm);
}

.referral-form .form-group input,
.referral-form .form-group select,
.referral-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--warm-gray);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.referral-form .form-group input:focus,
.referral-form .form-group select:focus,
.referral-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-warm);
}

.referral-form .submit-button {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-warm);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(230, 126, 80, 0.3);
}

.referral-form .submit-button:hover {
    background-color: var(--secondary-warm);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 80, 0.4);
}

/* Intake Portal Page Styles */
.intake-portal-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--warm-cream), var(--white));
}

.portal-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    align-items: start;
}

.portal-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    color: var(--primary-warm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.portal-info h2 {
    font-size: 2.2rem;
    color: var(--dark-warm);
    margin-bottom: 25px;
    text-align: center;
}

.portal-info > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-warm);
    margin-bottom: 35px;
    text-align: center;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--warm-cream);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-warm);
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-text h3 {
    font-size: 1.3rem;
    color: var(--dark-warm);
    margin-bottom: 8px;
}

.highlight-text p {
    font-size: 1rem;
    color: var(--text-warm);
    line-height: 1.6;
    margin: 0;
}

.portal-instructions {
    background-color: var(--gentle-peach);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-warm);
}

.portal-instructions h3 {
    font-size: 1.5rem;
    color: var(--dark-warm);
    margin-bottom: 20px;
}

.portal-instructions ul {
    list-style: none;
    margin-bottom: 20px;
}

.portal-instructions li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-warm);
    line-height: 1.7;
    font-size: 1.05rem;
}

.portal-instructions li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-warm);
    font-weight: bold;
    font-size: 1.2rem;
}

.time-estimate {
    font-size: 1rem;
    color: var(--warm-gray);
    font-style: italic;
    margin: 0;
}

.portal-cta-card {
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100%);
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 8px 30px rgba(230, 126, 80, 0.3);
    color: var(--white);
    text-align: center;
    position: sticky;
    top: 150px;
}

.cta-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.cta-icon svg {
    width: 50px;
    height: 50px;
}

.cta-card-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-card-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.portal-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background-color: var(--white);
    color: var(--primary-warm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.portal-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background-color: var(--warm-cream);
}

.portal-button svg {
    transition: transform 0.3s ease;
}

.portal-button:hover svg {
    transform: translateX(5px);
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.secure-note svg {
    flex-shrink: 0;
}

.help-section {
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.help-card h3 {
    font-size: 1.8rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.help-card > p {
    font-size: 1.1rem;
    color: var(--text-warm);
    margin-bottom: 30px;
    line-height: 1.7;
}

.help-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background-color: var(--warm-cream);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.help-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.help-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-warm);
    flex-shrink: 0;
}

.help-item a {
    color: var(--primary-warm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.help-item a:hover {
    color: var(--secondary-warm);
}

/* Responsive Design for Intake Portal */
@media (max-width: 968px) {
    .portal-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portal-cta-card {
        position: static;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .portal-info {
        padding: 30px 25px;
    }
    
    .portal-info h2 {
        font-size: 1.8rem;
    }
    
    .info-highlights {
        gap: 20px;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .portal-instructions {
        padding: 25px 20px;
    }
    
    .cta-card-content h2 {
        font-size: 1.7rem;
    }
    
    .portal-button {
        padding: 18px 40px;
        font-size: 1.15rem;
    }
    
    .help-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .help-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .intake-portal-section {
        padding: 60px 20px;
    }
    
    .portal-info {
        padding: 25px 20px;
    }
    
    .portal-info h2 {
        font-size: 1.6rem;
    }
    
    .portal-info > p {
        font-size: 1.05rem;
    }
    
    .highlight-text h3 {
        font-size: 1.2rem;
    }
    
    .portal-cta-card {
        padding: 30px 20px;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .cta-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .portal-button {
        padding: 16px 35px;
        font-size: 1.05rem;
        width: 100%;
    }
    
    .help-card {
        padding: 30px 20px;
    }
    
    .help-item {
        width: 100%;
    }
}

/* Intake Forms Portal Page Styles */
.intake-forms-portal-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--warm-cream), var(--white));
}

/* Auto-Save Info Box */
.auto-save-info-box {
    max-width: 900px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.05) 100%);
    border: 3px solid #28a745;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.info-box-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    color: #28a745;
    background-color: rgba(40, 167, 69, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.info-box-icon svg {
    width: 100%;
    height: 100%;
}

.info-box-content h2 {
    font-size: 1.8rem;
    color: var(--dark-warm);
    margin-bottom: 20px;
    line-height: 1.3;
}

.info-box-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-box-points p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-warm);
    margin: 0;
}

.info-box-points strong {
    color: var(--dark-warm);
    font-weight: 700;
}

/* Form Cards Grid */
.form-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.form-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-warm);
}

.form-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--soft-coral);
}

.form-card-header h3 {
    font-size: 2rem;
    color: var(--dark-warm);
    margin-bottom: 10px;
}

.form-card-subtext {
    font-size: 1.05rem;
    color: var(--warm-gray);
    font-style: italic;
    margin: 0;
}

.form-card-content {
    flex: 1;
    margin-bottom: 30px;
}

.form-card-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-warm);
    text-align: center;
}

.form-access-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 126, 80, 0.3);
    margin-top: auto;
}

.form-access-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(230, 126, 80, 0.4);
    background: linear-gradient(135deg, var(--warm-blue) 0%, var(--primary-warm) 100%);
}

.form-access-button svg {
    transition: transform 0.3s ease;
}

.form-access-button:hover svg {
    transform: translateX(5px);
}

/* Instructions Section */
.instructions-section {
    max-width: 1000px;
    margin: 0 auto 60px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-left: 6px solid var(--warm-blue);
}

.instructions-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--warm-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructions-icon svg {
    width: 100%;
    height: 100%;
}

.instructions-section h2 {
    font-size: 2rem;
    color: var(--dark-warm);
    text-align: center;
    margin-bottom: 40px;
}

.instructions-content {
    margin-bottom: 40px;
}

.instructions-content:last-child {
    margin-bottom: 0;
}

.instructions-content h3 {
    font-size: 1.5rem;
    color: var(--primary-warm);
    margin-bottom: 20px;
}

.instructions-content ol {
    list-style: none;
    counter-reset: step-counter;
    margin-bottom: 25px;
}

.instructions-content li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-warm);
}

.instructions-content li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(230, 126, 80, 0.3);
}

.instructions-content li strong {
    color: var(--dark-warm);
    font-weight: 700;
}

.instructions-note {
    background-color: var(--warm-cream);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-gold);
    font-size: 1rem;
    color: var(--text-warm);
    line-height: 1.6;
}

.instructions-note strong {
    color: var(--dark-warm);
}

.instructions-divider {
    border: none;
    border-top: 2px dashed var(--warm-gray);
    margin: 40px 0;
    opacity: 0.5;
}

/* Help Section - Reusing existing styles with minor adjustments */
.intake-forms-portal-section .help-section {
    max-width: 1000px;
    margin: 0 auto;
}

.intake-forms-portal-section .help-card {
    background: linear-gradient(135deg, var(--gentle-peach) 0%, var(--warm-cream) 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 3px solid var(--soft-coral);
}

.intake-forms-portal-section .help-card h3 {
    font-size: 2rem;
    color: var(--dark-warm);
    margin-bottom: 20px;
}

.intake-forms-portal-section .help-card > p {
    font-size: 1.1rem;
    color: var(--text-warm);
    line-height: 1.7;
    margin-bottom: 15px;
}

.intake-forms-portal-section .help-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.intake-forms-portal-section .help-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background-color: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.intake-forms-portal-section .help-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.intake-forms-portal-section .help-item svg {
    width: 28px;
    height: 28px;
    color: var(--primary-warm);
    flex-shrink: 0;
}

.intake-forms-portal-section .help-item a {
    color: var(--primary-warm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.intake-forms-portal-section .help-item a:hover {
    color: var(--secondary-warm);
}

/* Referral Dashboard Styles */
.dashboard-auth-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--warm-cream), var(--white));
    min-height: 70vh;
}

.auth-card {
    max-width: 550px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(230, 126, 80, 0.3);
}

.auth-icon svg {
    width: 40px;
    height: 40px;
}

.auth-card h2 {
    font-size: 2rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.auth-card > p {
    font-size: 1.1rem;
    color: var(--text-warm);
    margin-bottom: 35px;
    line-height: 1.6;
}

.auth-form {
    margin-bottom: 25px;
}

.auth-form .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.auth-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-warm);
    font-size: 1rem;
}

.auth-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--warm-gray);
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary-warm);
    box-shadow: 0 0 0 3px rgba(230, 126, 80, 0.1);
}

.auth-error {
    background-color: #fee;
    border: 2px solid #fcc;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.auth-error p {
    color: #c33;
    margin: 0;
    font-size: 1rem;
}

.auth-error a {
    color: #c33;
    text-decoration: underline;
}

.auth-help {
    padding-top: 25px;
    border-top: 2px solid var(--warm-cream);
}

.auth-help p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-warm);
}

.auth-help a {
    color: var(--primary-warm);
    text-decoration: none;
    font-weight: 600;
}

.auth-help a:hover {
    text-decoration: underline;
}

/* Dashboard Section */
.dashboard-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--warm-cream), var(--white));
}

.dashboard-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.welcome-content h2 {
    font-size: 2rem;
    color: var(--dark-warm);
    margin-bottom: 5px;
}

.welcome-content p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin: 0;
}

.logout-btn {
    padding: 12px 30px;
    background-color: var(--warm-gray);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background-color: var(--dark-warm);
    transform: translateY(-2px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-card.stat-primary {
    border-left-color: var(--warm-blue);
}

.stat-card.stat-success {
    border-left-color: #28a745;
}

.stat-card.stat-earnings {
    border-left-color: var(--primary-warm);
}

.stat-card.stat-pending {
    border-left-color: var(--accent-gold);
}

.stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--gentle-peach) 100());
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-warm);
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.stat-content h3 {
    font-size: 1rem;
    color: var(--warm-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-warm);
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-top: 5px;
}

/* Referral Code Section */
.referral-code-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.code-card,
.share-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.code-card h3,
.share-card h3 {
    font-size: 1.5rem;
    color: var(--dark-warm);
    margin-bottom: 20px;
}

.code-display {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.code-value {
    flex: 1;
    padding: 20px;
    background: linear-gradient(135deg, var(--gentle-peach) 0%, var(--warm-cream) 100());
    border: 3px solid var(--primary-warm);
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-warm);
    text-align: center;
    letter-spacing: 2px;
}

.copy-btn {
    padding: 15px 25px;
    background-color: var(--primary-warm);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.copy-btn:hover {
    background-color: var(--secondary-warm);
    transform: translateY(-2px);
}

.copy-btn svg {
    width: 20px;
    height: 20px;
}

.code-instructions {
    font-size: 1rem;
    color: var(--text-warm);
    line-height: 1.6;
    margin: 0;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.share-btn {
    padding: 15px 20px;
    background-color: var(--warm-cream);
    border: 2px solid var(--warm-gray);
    border-radius: 10px;
    font-weight: 600;
    color: var(--dark-warm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.share-btn:hover {
    background-color: var(--primary-warm);
    color: var(--white);
    border-color: var(--primary-warm);
    transform: translateX(5px);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Tier Info Section */
.tier-info-section {
    margin-bottom: 50px;
}

.tier-info-section h3 {
    font-size: 1.8rem;
    color: var(--dark-warm);
    margin-bottom: 20px;
}

.tier-card-display {
    background-color: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 30px;
    align-items: center;
    border-left: 5px solid var(--primary-warm);
}

.tier-icon-large {
    font-size: 4rem;
    line-height: 1;
}

.tier-details h4 {
    font-size: 1.5rem;
    color: var(--dark-warm);
    margin-bottom: 12px;
}

.tier-badge-display {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-warm);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tier-details p {
    font-size: 1.05rem;
    color: var(--text-warm);
    line-height: 1.6;
    margin: 0;
}

/* Referrals Table Section */
.referrals-table-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header h3 {
    font-size: 1.8rem;
    color: var(--dark-warm);
    margin: 0;
}

.filter-buttons {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--warm-cream);
    border: 2px solid var(--warm-gray);
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark-warm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--gentle-peach);
}

.filter-btn.active {
    background-color: var(--primary-warm);
    color: var(--white);
    border-color: var(--primary-warm);
}

.table-container {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.referrals-table {
    width: 100%;
    border-collapse: collapse;
}

.referrals-table thead {
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100());
    color: var(--white);
}

.referrals-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
}

.referrals-table tbody tr {
    border-bottom: 1px solid var(--warm-cream);
    transition: all 0.2s ease;
}

.referrals-table tbody tr:hover {
    background-color: var(--warm-cream);
}

.referrals-table td {
    padding: 18px 20px;
    color: var(--text-warm);
}

.status-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: capitalize;
}

.status-completed {
    background-color: #d4edda;
    color: #155724;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.no-referrals {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.no-referrals svg {
    width: 80px;
    height: 80px;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.no-referrals h4 {
    font-size: 1.5rem;
    color: var(--dark-warm);
    margin-bottom: 10px;
}

.no-referrals p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin: 0;
}

/* Performance Section */
.performance-section {
    margin-bottom: 50px;
}

.performance-section h3 {
    font-size: 1.8rem;
    color: var(--dark-warm);
    margin-bottom: 20px;
}

.chart-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.chart-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary-warm);
    margin-bottom: 15px;
}

.chart-placeholder > p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 30px;
}

.simple-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px;
    gap: 15px;
    padding: 20px 0;
}

.chart-bar-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(to top, var(--primary-warm) 0%, var(--soft-coral) 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    min-height: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
}

.chart-bar:hover {
    transform: scaleY(1.05);
    box-shadow: 0 -5px 20px rgba(230, 126, 80, 0.3);
}

.bar-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.chart-label {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-warm);
}

/* Resources Section */
.resources-section {
    margin-bottom: 50px;
}

.resources-section h3 {
    font-size: 1.8rem;
    color: var(--dark-warm);
    margin-bottom: 25px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 1.3rem;
    color: var(--dark-warm);
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 1rem;
    color: var(--text-warm);
    line-height: 1.6;
    margin: 0;
}

/* Support Section */
.support-section {
    margin-bottom: 50px;
}

.support-card {
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100());
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(230, 126, 80, 0.3);
}

.support-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.support-card > p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.support-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.support-link:hover {
    background-color: var(--white);
    color: var(--primary-warm);
    transform: translateY(-3px);
}

.support-link svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design for Dashboard */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .referral-code-section {
        grid-template-columns: 1fr;
    }
    
    .dashboard-welcome {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tier-card-display {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .dashboard-auth-section {
        padding: 60px 20px;
    }
    
    .auth-card {
        padding: 40px 30px;
    }
    
    .dashboard-section {
        padding: 60px 20px;
    }
    
    .dashboard-welcome {
        padding: 25px;
    }
    
    .welcome-content h2 {
        font-size: 1.7rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 25px;
    }
    
    .code-display {
        flex-direction: column;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .referrals-table {
        min-width: 600px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .support-contact {
        flex-direction: column;
    }
    
    .support-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-icon {
        width: 70px;
        height: 70px;
    }
    
    .auth-card h2 {
        font-size: 1.7rem;
    }
    
    .dashboard-welcome {
        padding: 20px;
    }
    
    .welcome-content h2 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .code-card,
    .share-card {
        padding: 25px 20px;
    }
    
    .code-value {
        font-size: 1.4rem;
        padding: 15px;
    }
    
    .tier-info-section h3,
    .performance-section h3,
    .resources-section h3 {
        font-size: 1.5rem;
    }
    
    .tier-card-display {
        padding: 25px 20px;
    }
    
    .tier-icon-large {
        font-size: 3rem;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .filter-buttons {
        width: 100%;
    }
    
    .filter-btn {
        flex: 1;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .chart-container {
        padding: 25px 15px;
    }
    
    .simple-chart {
        height: 200px;
    }
    
    .tip-card {
        padding: 25px 20px;
    }
    
    .support-card {
        padding: 35px 25px;
    }
    
    .support-card h3 {
        font-size: 1.7rem;
    }
}

/* Responsive Design for Intake Forms Portal */
@media (max-width: 968px) {
    .auto-save-info-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 35px 30px;
    }
    
    .form-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .intake-forms-portal-section {
        padding: 60px 20px;
    }
    
    .auto-save-info-box {
        padding: 30px 25px;
        margin-bottom: 50px;
    }
    
    .info-box-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-box-content h2 {
        font-size: 1.6rem;
    }
    
    .info-box-points p {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 35px 30px;
    }
    
    .form-card-header h3 {
        font-size: 1.8rem;
    }
    
    .form-access-button {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .instructions-section {
        padding: 40px 30px;
    }
    
    .instructions-section h2 {
        font-size: 1.8rem;
    }
    
    .instructions-content h3 {
        font-size: 1.3rem;
    }
    
    .instructions-content li {
        font-size: 1.05rem;
        padding-left: 45px;
    }
    
    .instructions-content li:before {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    
    .intake-forms-portal-section .help-card {
        padding: 40px 30px;
    }
    
    .intake-forms-portal-section .help-card h3 {
        font-size: 1.8rem;
    }
    
    .intake-forms-portal-section .help-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .intake-forms-portal-section .help-item {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .auto-save-info-box {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .info-box-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-box-content h2 {
        font-size: 1.4rem;
    }
    
    .info-box-points p {
        font-size: 0.95rem;
    }
    
    .form-card {
        padding: 30px 25px;
    }
    
    .form-card-header h3 {
        font-size: 1.6rem;
    }
    
    .form-card-subtext {
        font-size: 1rem;
    }
    
    .form-card-content p {
        font-size: 1rem;
    }
    
    .form-access-button {
        padding: 15px 25px;
        font-size: 1.05rem;
    }
    
    .instructions-section {
        padding: 30px 20px;
    }
    
    .instructions-icon {
        width: 50px;
        height: 50px;
    }
    
    .instructions-section h2 {
        font-size: 1.6rem;
    }
    
    .instructions-content h3 {
        font-size: 1.2rem;
    }
    
    .instructions-content li {
        font-size: 1rem;
        padding-left: 42px;
    }
    
    .instructions-content li:before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .instructions-note {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    
    .intake-forms-portal-section .help-card {
        padding: 30px 20px;
    }
    
    .intake-forms-portal-section .help-card h3 {
        font-size: 1.6rem;
    }
    
    .intake-forms-portal-section .help-card > p {
        font-size: 1rem;
    }
    
    .intake-forms-portal-section .help-item {
        padding: 15px 20px;
    }
    
    .intake-forms-portal-section .help-item a {
        font-size: 1.05rem;
    }
}

/* Responsive Design for Referral Program */
@media (max-width: 968px) {
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .referral-intro h2,
    .how-it-works-section h2,
    .referral-tiers-section h2,
    .compliance-section h2,
    .referral-contact-section h2 {
        font-size: 2rem;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .referral-form-section {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .referral-intro h2,
    .how-it-works-section h2,
    .referral-tiers-section h2,
    .compliance-section h2,
    .referral-contact-section h2 {
        font-size: 1.8rem;
    }
    
    .step-card,
    .tier-card,
    .compliance-item,
    .contact-method-card {
        padding: 25px 20px;
    }
    
    .referral-form-section {
        padding: 30px 20px;
    }
    
    .referral-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Product Category Headers */
.product-category-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 25px 40px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--warm-blue) 100%);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(230, 126, 80, 0.3);
}

.product-category-header h2 {
    color: var(--white);
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Color Selector Styles */
.color-selector {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.color-selector label {
    display: block;
    font-weight: 600;
    color: var(--dark-warm);
    margin-bottom: 12px;
}

.color-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: var(--white);
    border: 2px solid var(--warm-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option:hover {
    border-color: var(--primary-warm);
    box-shadow: 0 2px 8px rgba(230, 126, 80, 0.2);
}

.color-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-warm);
}

.color-option input[type="radio"]:checked + .color-swatch {
    box-shadow: 0 0 0 3px var(--primary-warm);
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.color-option span:last-child {
    font-weight: 600;
    color: var(--dark-warm);
}

.color-option input[type="radio"]:checked ~ span:last-child {
    color: var(--primary-warm);
}

/* Badge Styles */
.badge-comprehensive {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.badge-popular {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* Bonus Callout Box */
.bonus-callout {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid #FFD700;
    border-left: 5px solid #FFA500;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.bonus-callout strong {
    display: block;
    color: #FFA500;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.bonus-callout ul {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.bonus-callout li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-warm);
    font-weight: 500;
}

.bonus-callout li:before {
    content: "🎁";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Shipping Note Styles */
.shipping-note {
    color: var(--warm-gray);
    font-style: italic;
    margin-top: 15px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    border-left: 3px solid var(--warm-blue);
}

/* Free Shipping Badge */
.free-shipping {
    display: inline-block;
    background-color: #28a745;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Compact Addon Card for Tab Sets */
.addon-card.compact {
    padding: 25px;
}

.addon-card.compact .addon-header h3 {
    font-size: 1.4rem;
}

.addon-card.compact .addon-price {
    font-size: 1.5rem;
}

.addon-card.compact .addon-description {
    font-size: 0.95rem;
}

/* Four Column Grid for Tabs */
.addons-grid.four-column {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Product Description Enhancements */
.product-description > p:first-child {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.product-description ul {
    list-style: none;
    margin: 15px 0;
}

.product-description li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.product-description li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-warm);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Modern Product Card Styles */
.premium-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.product-card-modern {
    background: linear-gradient(to bottom, var(--white) 0%, var(--warm-cream) 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    border-color: var(--primary-warm);
}

.product-card-modern.featured {
    border: 3px solid var(--primary-warm);
    background: linear-gradient(135deg, var(--white) 0%, var(--gentle-peach) 100%);
}

.product-image-showcase {
    width: 100%;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-image-showcase:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

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

.product-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--soft-coral);
}

.product-card-header h3 {
    font-size: 1.7rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-price-tag {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-warm);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.product-summary {
    margin-bottom: 25px;
    line-height: 1.7;
}

.product-summary p {
    margin-bottom: 12px;
    color: var(--text-warm);
}

.product-summary strong {
    color: var(--dark-warm);
    font-size: 1.05rem;
}

.bonus-highlight-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.bonus-text strong {
    display: block;
    color: #FFA500;
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.bonus-text p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    margin: 0;
}

.product-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px;
    background-color: var(--warm-blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.product-toggle-btn:hover {
    background-color: var(--primary-warm);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 80, 0.3);
}

.product-toggle-btn.active {
    background-color: var(--primary-warm);
}

.product-toggle-btn.active svg {
    transform: rotate(180deg);
}

.product-toggle-btn svg {
    transition: transform 0.3s ease;
}

.product-toggle-btn.compact {
    padding: 10px 15px;
    font-size: 0.95rem;
}

.product-details-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.included-bonuses,
.product-features-list {
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.included-bonuses h4,
.product-features-list h4 {
    font-size: 1.2rem;
    color: var(--dark-warm);
    margin-bottom: 15px;
}

.included-bonuses ul,
.product-features-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.included-bonuses li,
.product-features-list li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: var(--text-warm);
}

.included-bonuses li:before {
    content: "🎁";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.product-features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-warm);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-actions-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.color-selector-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.color-selector-compact label {
    font-weight: 600;
    color: var(--dark-warm);
    font-size: 1rem;
}

.color-options-inline {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: var(--white);
    border: 2px solid var(--warm-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option-compact:hover {
    border-color: var(--primary-warm);
    box-shadow: 0 2px 8px rgba(230, 126, 80, 0.2);
}

.color-option-compact input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-warm);
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-selector label {
    font-weight: 600;
    color: var(--dark-warm);
    font-size: 1rem;
}

.qty-selector select {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--warm-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Specialized Products Grid */
.specialized-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.product-card-compact {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--soft-coral);
}

.product-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.compact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.compact-header h3 {
    font-size: 1.5rem;
    color: var(--dark-warm);
    flex: 1;
}

.compact-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-warm);
    flex-shrink: 0;
}

.compact-description {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-warm);
}

.compact-features {
    padding: 15px;
    background-color: var(--warm-cream);
    border-radius: 8px;
}

.compact-features p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-warm);
}

.compact-features p:last-child {
    margin-bottom: 0;
}

.product-actions-compact {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.color-selector-mini,
.qty-selector-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-selector-mini {
    flex: 1;
}

.qty-selector-mini {
    flex-shrink: 0;
}

.color-selector-mini label,
.qty-selector-mini label {
    font-weight: 600;
    color: var(--dark-warm);
    font-size: 0.95rem;
}

.color-selector-mini select,
.qty-selector-mini select {
    padding: 10px 12px;
    border: 2px solid var(--warm-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Add-ons Products Grid */
.addons-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.addon-card-modern {
    background-color: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--warm-cream);
    display: flex;
    flex-direction: column;
    position: relative;
}

.addon-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-warm);
}

.addon-card-modern.highlight {
    border-color: #28a745;
    background: linear-gradient(to bottom, var(--white) 0%, rgba(40, 167, 69, 0.05) 100%);
}

.free-ship-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #28a745;
    color: var(--white);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.addon-card-modern h3 {
    font-size: 1.3rem;
    color: var(--dark-warm);
    margin-bottom: 12px;
    line-height: 1.3;
}

.addon-price-modern {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-warm);
    margin-bottom: 15px;
}

.addon-desc {
    flex: 1;
    line-height: 1.6;
    color: var(--text-warm);
    margin-bottom: 15px;
}

.addon-note-small {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-style: italic;
    margin-bottom: 15px;
}

.addon-actions {
    margin-top: auto;
}

.addon-actions select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--warm-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.addon-actions select:focus {
    outline: none;
    border-color: var(--primary-warm);
    box-shadow: 0 0 0 3px rgba(230, 126, 80, 0.1);
}

/* Responsive Design for Checkout */
@media (max-width: 968px) {
    .main-products-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-products-grid {
        grid-template-columns: 1fr;
    }
    
    .specialized-products-grid {
        grid-template-columns: 1fr;
    }
    
    .addons-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .cart-summary-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-price {
        align-self: flex-end;
    }
    
    .checkout-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .checkout-intro h2 {
        font-size: 2rem;
    }
    
    .main-products-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-product-card {
        padding: 25px;
    }
    
    .addons-section {
        padding: 25px;
    }
    
    .promotion-box {
        padding: 20px;
    }
    
    .checkout-form {
        padding: 20px;
    }
    
    .premium-products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-modern {
        padding: 25px;
    }
    
    .product-card-header h3 {
        font-size: 1.5rem;
    }
    
    .product-price-tag {
        font-size: 2.2rem;
    }
    
    .specialized-products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card-compact {
        padding: 20px;
    }
    
    .compact-header {
        flex-direction: column;
    }
    
    .product-actions-compact {
        flex-direction: column;
    }
    
    .color-selector-mini {
        width: 100%;
    }
    
    .addons-products-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-card-modern {
        padding: 20px;
    }
}

/* Viral Loop Widget Section - Redesigned */
.share-gift-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gentle-peach) 0%, var(--warm-cream) 100%);
    position: relative;
    overflow: hidden;
}

.share-gift-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 126, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.share-gift-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 163, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.share-gift-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.share-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--soft-coral) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(230, 126, 80, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(230, 126, 80, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(230, 126, 80, 0.4);
    }
}

.share-icon {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.share-gift-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-warm);
    font-weight: 700;
}

.share-gift-section .section-intro {
    font-size: 1.2rem;
    color: var(--text-warm);
    line-height: 1.8;
}

.share-gift-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.benefit-bubble {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(230, 126, 80, 0.2);
}

.benefit-bubble:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-warm);
}

.bubble-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--gentle-peach) 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bubble-content h3 {
    font-size: 1.3rem;
    color: var(--dark-warm);
    margin-bottom: 5px;
    font-weight: 700;
}

.bubble-content p {
    font-size: 1rem;
    color: var(--text-warm);
    margin: 0;
    line-height: 1.5;
}

.viral-loop-widget-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-warm);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.widget-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 126, 80, 0.08) 0%, transparent 70%);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: float 15s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    background: radial-gradient(circle, rgba(107, 163, 196, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(244, 165, 130, 0.06) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

.viral-loop-widget-container form-widget {
    position: relative;
    z-index: 1;
}

.share-gift-footer {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.footer-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--text-warm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(230, 126, 80, 0.2);
}

/* Responsive Design for Viral Loop Widget */
@media (max-width: 968px) {
    .share-gift-benefits {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .share-gift-section {
        padding: 80px 20px;
    }
    
    .share-gift-section h2 {
        font-size: 2.2rem;
    }
    
    .share-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .share-icon {
        width: 35px;
        height: 35px;
    }
    
    .benefit-bubble {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .viral-loop-widget-container {
        padding: 40px 30px;
    }
    
    .footer-note {
        font-size: 0.95rem;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .share-gift-section {
        padding: 60px 20px;
    }
    
    .share-gift-section h2 {
        font-size: 1.9rem;
    }
    
    .share-gift-section .section-intro {
        font-size: 1.05rem;
    }
    
    .share-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .share-icon {
        width: 30px;
        height: 30px;
    }
    
    .benefit-bubble {
        padding: 20px;
    }
    
    .bubble-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .bubble-content h3 {
        font-size: 1.2rem;
    }
    
    .bubble-content p {
        font-size: 0.95rem;
    }
    
    .viral-loop-widget-container {
        padding: 30px 20px;
    }
    
    .footer-note {
        font-size: 0.9rem;
        padding: 10px 20px;
        flex-direction: column;
        gap: 5px;
    }
}

/* Referral Form Widget Section */
.referral-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--gentle-peach) 100%);
}

.referral-form-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.referral-form-section form-widget {
    display: block;
    min-height: 400px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-warm);
}

@media (max-width: 768px) {
    .referral-form-section {
        padding: 60px 20px;
    }
    
    .referral-form-section form-widget {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .referral-form-section {
        padding: 40px 20px;
    }
    
    .referral-form-section form-widget {
        padding: 25px 15px;
    }
}