@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('assets/fonts/outfit-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/outfit-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/outfit-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('assets/fonts/outfit-800.ttf') format('truetype');
}

:root {
    --primary: #FF7F50;
    --primary-dark: #E66A40;
    --primary-light: #FFB399;
    --secondary: #4CAF50;
    --secondary-dark: #388E3C;
    --accent: #FFD700;
    --bg: #FFFBF5;
    --card-bg: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #717171;
    --glass: rgba(255, 255, 255, 0.75);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03);
    --shadow-mid: 0 15px 45px rgba(255, 127, 80, 0.1);
    --shadow-bold: 0 25px 60px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Glass Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.5rem 5%;
    box-shadow: var(--shadow);
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.mobile-nav-close {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow-mid);
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 127, 80, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 127, 80, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.1) 0%, transparent 40%);
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Floating Elements */
.floating-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    opacity: 0.1;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
}

/* Pet Profile Builder Styles */
.pet-profile-builder {
    padding: 100px 10%;
    background: linear-gradient(135deg, #fff 0%, #fff8f5 100%);
    position: relative;
    overflow: hidden;
}

.pet-profile-builder::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 127, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.profile-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.profile-header {
    text-align: center;
    margin-bottom: 4rem;
}

.profile-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 800;
}

.profile-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.profile-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.allergies-selection {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: #fdfaf5;
    border-radius: 30px;
    border: 1px dashed #e2e8f0;
}

.allergies-selection label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 1.1rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.check-container {
    position: relative;
    cursor: pointer;
    background: white;
    padding: 1.2rem;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.check-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: color 0.3s;
}

.check-container:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.check-container:has(input:checked) {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.3);
}

.check-container:has(input:checked) .check-label {
    color: white;
}

.form-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.clear-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: white;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s;
}

.clear-btn:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
    transform: scale(1.05);
}

/* Loading Spinner */
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--secondary);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.active-profile-banner {
    margin-top: 3rem;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 1.5rem 2.5rem;
    border-radius: 24px;
    color: var(--text);
    box-shadow: var(--shadow);
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

/* Safety Badge in Shop */
.safety-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulseBadge 2s infinite;
}


@keyframes pulseBadge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@media (max-width: 900px) {
    .profile-form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-card {
        padding: 2.5rem 1.5rem;
    }
}


/* Categories Section */
.section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonial Cards */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

/* Features Section */
.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-img {
    border-radius: 40px;
    width: 100%;
    box-shadow: var(--shadow);
}

/* Founder Section */
.founder-section {
    padding: 120px 5%;
    background: white;
    position: relative;
    overflow: hidden;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-image-box {
    position: relative;
    z-index: 1;
}

.founder-image-box img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.founder-image-box::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 127, 80, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.founder-intro h3 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.founder-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.founder-image-box .image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 5px solid var(--primary);
    border-radius: 30px;
    z-index: -1;
}

.founder-footer {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

.designation {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.signature {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text);
}

.founder-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    margin: 2rem 0;
    line-height: 1.4;
    position: relative;
    padding-left: 2rem;
    border-left: 4px solid var(--secondary);
}

.founder-bio p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .section-main-title {
        font-size: 2.5rem;
    }

    .founder-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .founder-quote {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--secondary);
        padding-top: 1rem;
    }
}

/* Benefits Section (New Circular Layout) */
.benefits-section {
    padding: 100px 5%;
    background: #fdfaf5;
    background-image: radial-gradient(#eee 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-column.left .benefit-item {
    text-align: right;
    flex-direction: row-reverse;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary);
}

.benefit-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

.central-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 50%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    border: 10px solid white;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-column.left .benefit-item {
        text-align: left;
        flex-direction: row;
    }

    .central-image {
        order: -1;
        margin-bottom: 3rem;
    }
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-total {
    border-top: 1px solid #eee;
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.social-float {
    background: #E4405F;
    /* Instagram deep pink/red */
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-hover);
}

/* Shop Styling */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid #eee;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.product-card .product-info {
    flex-grow: 1;
}

.product-card .category-tag {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.product-card .add-cart {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Treat-O-Meter Styles */
.treat-o-meter {
    margin: 1rem 0;
    padding: 0.8rem;
    background: #fdfaf5;
    border-radius: 15px;
    border: 1px dashed #e2e8f0;
}

.meter-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid #f0fdf4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}


/* Subscription Section Styles */
.subscription-section {
    margin-top: 8rem;
    padding-bottom: 2rem;
}

.subscription-card {
    background: white;
    border-radius: 40px;
    padding: 5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf9 100%);
}

.subscription-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.subscription-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.subscription-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.subscription-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.sub-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--text);
}

.sub-benefit i {
    width: 35px;
    height: 35px;
    background: #f0fdf4;
    color: var(--secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.subscription-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px dashed #e2e8f0;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.sub-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.sub-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Treat Box Visual Animation */
.subscription-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-visual {
    position: relative;
    width: 150px;
    height: 150px;
    background: #d4a373;
    /* Cardboard color */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.box-icon {
    font-size: 5rem;
    color: white;
    z-index: 2;
}

.box-flap {
    position: absolute;
    top: -20px;
    width: 80px;
    height: 40px;
    background: #bc8a5f;
    border-radius: 5px;
    transform-origin: bottom;
    animation: flapMove 2s infinite ease-in-out;
}

.box-flap.left {
    left: 0;
    transform: rotate(-30deg);
}

.box-flap.right {
    right: 0;
    transform: rotate(30deg);
}

@keyframes flapMove {

    0%,
    100% {
        transform: rotate(-30deg);
    }

    50% {
        transform: rotate(-45deg);
    }
}

.box-flap.right {
    animation-direction: reverse;
}

.floating-treats i {
    position: absolute;
    color: var(--secondary);
    font-size: 1.5rem;
    animation: treatFloat 3s infinite ease-in-out;
    opacity: 0.8;
}

.treat-1 {
    top: -40px;
    left: 10px;
    animation-delay: 0s;
}

.treat-2 {
    top: -60px;
    left: 60px;
    animation-delay: 0.5s;
    color: var(--primary) !important;
}

.treat-3 {
    top: -30px;
    left: 110px;
    animation-delay: 1s;
}

@keyframes treatFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-30px) rotate(20deg);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .subscription-card {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        text-align: center;
        gap: 3rem;
    }

    .subscription-content h2 {
        font-size: 2.5rem;
    }

    .subscription-benefits {
        align-items: center;
    }

    .subscription-actions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .sub-btn {
        width: 100%;
    }
}

/* Mobile Responsive Refinements */
@media (max-width: 992px) {
    header {
        padding: 0.8rem 5%;
        display: flex;
        align-items: center;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        order: 2;
        margin-left: auto;
        /* Pushes both cart and menu to the right */
    }

    /* Remove Book Now and Cart from Header on Mobile */
    .header-actions .cta-btn,
    .cart-icon {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text);
        background: white;
        border-radius: 12px;
        box-shadow: var(--shadow-soft);
        order: 3;
        margin-left: 0.5rem;
    }

    .hero {
        padding: 120px 5% 60px;
        flex-direction: column-reverse;
        text-align: center;
        height: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 1.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 2rem;
    }

    .hero-btns .cta-btn {
        margin: 0 !important;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-image img {
        max-width: 280px;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    }

    /* Founder Section Mobile Layering Fix */
    .founder-section {
        padding: 60px 5%;
    }

    .founder-container {
        display: flex !important;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .founder-image-box {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        z-index: 5;
    }

    .founder-image-box img {
        position: relative;
        z-index: 2;
    }

    .founder-image-box::before,
    .image-accent {
        display: none !important;
        /* Remove overlapping accents on mobile */
    }

    .section-main-title {
        font-size: 2.2rem !important;
        margin-bottom: 1.5rem;
    }

    /* Benefits Section Alignment Fix */
    .benefits-section .section-title {
        text-align: center;
        padding: 0 5%;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .benefit-column {
        gap: 2rem !important;
    }

    .benefit-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
    }

    .benefit-icon {
        margin: 0 auto !important;
    }

    /* Side Navigation for Mobile */
    /* Side Navigation for Mobile */
    nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw !important;
        height: 100vh !important;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem 2rem;
        z-index: 2000;
        overflow: hidden;
    }

    nav.active {
        display: flex !important;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        color: var(--text);
    }

    .mobile-nav-close {
        display: block !important;
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 2.5rem;
        color: var(--text);
        cursor: pointer;
        padding: 15px;
        z-index: 2001;
    }

    /* Consultation Form Mobile Fix (FORCED Overflow Fix) */
    .features-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow-x: hidden !important;
    }

    .consultation-form-wrapper {
        padding: 1.5rem 1rem !important;
        /* Force smaller padding to override inline 3rem */
        margin: 1.5rem 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        border-radius: 20px !important;
        box-sizing: border-box !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    .step-progress {
        margin-bottom: 2rem !important;
        padding: 0 5px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .step-indicator {
        padding: 0 !important;
    }

    .step-indicator span {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }

    .step-indicator label {
        display: none !important;
        /* FORCE labels hidden */
    }

    .form-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 1.2rem !important;
    }

    .input-group {
        width: 100% !important;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100% !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
        padding: 12px !important;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}



/* Multi-Step Form Styles */
.consultation-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    background: white;
    padding: 0 10px;
}

.step-indicator span {
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: var(--transition);
}

.step-indicator.active span {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.4);
}

.step-indicator label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
}

.step-indicator.active label {
    color: var(--primary);
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.input-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid #eee;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background: #fdfdfd;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.1);
    background: white;
}

/* BCS Selector */
.bcs-option {
    position: relative;
    flex-shrink: 0;
}

.bcs-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.bcs-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 10px;
    border-radius: 20px;
    transition: var(--transition);
    background: #f9f9f9;
}

.bcs-option label img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.bcs-option input:checked+label {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow);
}

.bcs-option input:checked+label span {
    background: var(--primary);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Radio Cards */
.radio-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 1rem;
}

.radio-cards label {
    cursor: pointer;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    font-weight: 600;
}

.radio-cards input {
    display: none;
}

.radio-cards label:has(input:checked) {
    border-color: var(--primary);
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow);
}

.secondary-btn:hover {
    background: #ddd !important;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Consultation Packages */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 4rem auto;
}

.pricing-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card .plan-icon {
    width: 90px;
    height: 90px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    background: #fff8f5;
    color: var(--primary);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--text-main);
}

.pricing-card .price i {
    font-size: 1.5rem;
    margin-right: 5px;
}

.pricing-card .features-list {
    text-align: left;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.pricing-card .features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-card .features-list li i {
    color: var(--primary);
    margin-top: 4px;
}

.pricing-card .btn-consult {
    width: 100%;
    padding: 1.2rem;
    border-radius: 20px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.pricing-card .btn-consult:hover {
    background: var(--primary-dark);
}

.plan-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.mission-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: #fff8f5;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.mission-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

/* New Animated Testimonials */
.new-animated-testimonials {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.testimonials-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.testimonial-visual-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.new-image-stack {
    position: relative;
    width: 350px;
    /* Fixed width for stability */
    height: 350px;
}

.new-testimonial-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 2.5rem;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.new-testimonial-img.active {
    opacity: 1;
    scale: 1;
    z-index: 50;
    transform: translateY(0) rotate(0deg);
}

.new-testimonial-img.inactive {
    opacity: 0.5;
    z-index: 10;
}

.new-testimonial-img.exit {
    opacity: 0;
    scale: 0.9;
    transform: translateY(-50px);
}

.testimonial-text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.content-fade-in {
    animation: contentEnter 0.3s ease-out forwards;
}

@keyframes contentEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-fade-out {
    animation: contentExit 0.3s ease-in forwards;
}

@keyframes contentExit {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.testimonial-text-section h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.testimonial-text-section .designation {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #475569;
}

.testimonial-text-section .quote {
    margin-top: 2rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #334155;
}

.testimonial-controls {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
}

.control-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: #f1f5f9;
    color: #1e293b;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.control-btn:hover {
    background-color: #e2e8f0;
}

.control-btn i {
    transition: transform 0.3s;
}

.control-btn:hover i {
    transform: translateX(var(--move, 0));
}

.control-btn[aria-label="Previous"]:hover i {
    --move: -4px;
}

.control-btn[aria-label="Next"]:hover i {
    --move: 4px;
}

/* Impact Section Rebuild Styles */
.impact-hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background: #fdf1e6;
    border-radius: 0 0 50px 50px;
}

.impact-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.impact-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.impact-initiative-section {
    padding: 6rem 10%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.impact-initiative-section:nth-child(even) {
    flex-direction: row-reverse;
    background: #fff0bd;
}

.impact-initiative-content {
    flex: 1;
}

.impact-initiative-image {
    flex: 0 0 320px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.impact-initiative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.impact-initiative-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.impact-initiative-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.donate-cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    margin: 4rem 10%;
}

.donate-cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.donate-cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.donate-btn {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid white;
}

.donate-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .impact-initiative-section {
        flex-direction: column !important;
        text-align: center;
        padding: 4rem 5%;
    }

    .impact-initiative-image {
        flex: 0 0 300px;
        width: 300px;
        height: 300px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .testimonials-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .new-image-stack {
        width: 280px;
        height: 280px;
    }

    .testimonial-controls {
        justify-content: center;
    }
}

/* Modern Footer */
.modern-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 10% 40px;
    font-family: 'Outfit', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand .footer-logo {
    height: 70px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.contact-info i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.newsletter-box {
    position: relative;
    margin-top: 1.5rem;
}

.newsletter-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.newsletter-box input:focus {
    border-color: var(--primary);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--primary);
    border: none;
    padding: 0 1.2rem;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }

    header {
        padding: 0.8rem 5%;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-main-title {
        font-size: 2.2rem !important;
        margin-bottom: 1.5rem;
    }

    .founder-intro h3 {
        font-size: 1.5rem;
    }

    .founder-intro p {
        font-size: 1rem;
    }

    .profile-header h2 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .impact-hero h1 {
        font-size: 2.2rem;
    }

    .impact-initiative-content h2 {
        font-size: 1.8rem;
    }

    .founder-container {
        padding: 2.5rem 1.5rem;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .central-image img {
        max-width: 280px;
        border-width: 8px;
    }
}

/* --- Added Features --- */

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Changed to left based on user's preference for floating icons */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.floating-icon:hover {
    transform: scale(1.1) translateY(-5px);
}

.whatsapp-float {
    background: #25D366;
}

.phone-float {
    background: var(--primary);
}

/* Mobile Nav Overlay & Close */
@media (max-width: 900px) {

    /* Stacking categories on small mobile */
    .category-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Stacking grids on tablet/mobile */
@media (max-width: 768px) {
    .profile-form-grid {
        grid-template-columns: 1fr !important;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .google-reviews-container {
        padding: 1rem !important;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-main-title {
        font-size: 2.2rem;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Welfare Section Refinement */
.welfare-section {
    padding: 120px 10%;
    background: linear-gradient(180deg, var(--bg) 0%, white 100%);
    position: relative;
}

.welfare-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.welfare-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
}

.welfare-image::after {
    content: '🐾 Helping Paws';
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.welfare-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.welfare-image:hover img {
    transform: scale(1.02);
}

.welfare-content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.welfare-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .welfare-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .welfare-image {
        order: -1;
    }
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1002;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s ease;
}

/* Sticky Contact Bubble on Desktop */
@media (min-width: 992px) {
    .floating-contact {
        left: 40px;
        bottom: 40px;
    }
}

/* Header Adjustments */
header.active-nav {
    background: white !important;
}