/* 
 * Queen Bee Kitchen - Modern UI Stylesheet
 * Contemporary design with South Indian + Pan-Indian visual identity
 */

/* ===== MODERN BASE STYLES ===== */
:root {
    /* Modern Color Palette */
    --primary-color: #FF6B35; /* Vibrant orange */
    --primary-dark: #E55A2B;
    --primary-light: #FF8A65;
    --primary-gradient: linear-gradient(135deg, #FF6B35, #FF8A65);
    
    /* Secondary Colors */
    --secondary-color: #2ECC71; /* Fresh green */
    --secondary-dark: #27AE60;
    --secondary-light: #58D68D;
    --secondary-gradient: linear-gradient(135deg, #2ECC71, #58D68D);
    
    /* Accent Colors */
    --accent-color: #9B59B6; /* Modern purple */
    --accent-dark: #8E44AD;
    --accent-light: #BB8FCE;
    --accent-gradient: linear-gradient(135deg, #9B59B6, #BB8FCE);
    
    /* Neutral Colors */
    --text-dark: #2C3E50;
    --text-medium: #7F8C8D;
    --text-light: #BDC3C7;
    --background-light: #F8F9FA;
    --background-off-white: #FFFFFF;
    --background-warm: #FFF8F0;
    --background-glass: rgba(255, 255, 255, 0.1);
    
    /* Modern Fonts */
    --font-primary: 'Inter', 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Enhanced Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.5rem;
    --spacing-xxl: 3.5rem;
    
    /* Modern Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --border-radius-full: 50px;
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);

    /* Modern Margins */
    --margin-left: 2%;
    --margin-right: 2%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    background: var(--background-light);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--background-light);
    overflow-x: hidden;
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

ul, ol {
    list-style: none;
}

/* ===== MODERN TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    position: relative;
    padding-bottom: var(--spacing-md);
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.2rem;
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    line-height: 1.8;
}

/* ===== MODERN LAYOUT ===== */
.container {
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    max-width: 1600px;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--background-off-white);
}

.hero, .download, .community {
    margin-left: var(--margin-left);
    margin-right: var(--margin-right);
    background: var(--background-warm);
}

/* ===== MODERN COMPONENTS ===== */

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.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: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.primary-btn:hover {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Modern Cards */
.feature-card, .product-card, .testimonial {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.feature-card:hover, .product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

/* Modern Form Elements */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E8E8E8;
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--background-off-white);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-style: italic;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: var(--spacing-sm);
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 auto;
    min-width: 80px;
    max-width: 120px;
    width: 100px;
    border-radius: var(--border-radius-md);
    background: var(--background-off-white);
    border: 2px solid #E8E8E8;
    padding: 0.5rem 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-code-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.phone-input-group input[type="tel"] {
    flex: 1;
}

button[type="submit"] {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    box-shadow: var(--shadow-md);
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ===== MODERN HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo img {
    height: 50px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-full);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-links a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: var(--border-radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== MODERN HERO SECTION ===== */
.hero {
    padding-top: calc(80px + var(--spacing-xl));
    background: linear-gradient(135deg, var(--background-warm) 0%, #FFF5E6 100%);
    position: relative;
    overflow: hidden;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(var(--shadow-lg));
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

/* ===== MODERN FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    z-index: 1;
}

/* ===== MODERN RECIPE SECTION ===== */
.recipe-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.recipe-category {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.recipe-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.recipe-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-category:hover img {
    transform: scale(1.05);
}

.recipe-category h3, .recipe-category p {
    padding: 0 var(--spacing-lg);
}

.recipe-category h3 {
    margin-top: var(--spacing-lg);
    color: var(--text-dark);
    font-weight: 600;
}

.recipe-category p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-medium);
}

.recipe-app-promo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-top: var(--spacing-xxl);
    background: var(--background-off-white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xxl);
    box-shadow: var(--shadow-md);
}

.promo-content {
    max-width: 500px;
}

.promo-image {
    display: flex;
    justify-content: center;
}

.promo-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== MODERN PRODUCT SECTION ===== */
.product-categories {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: var(--background-off-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.category-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.category-tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-sm) 0;
}

/* ===== MODERN ACTIVITY SECTION ===== */
.activity-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-top: var(--spacing-xxl);
}

.activity-image, .activity-content {
    width: 100%;
}

.activity-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.activity-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.activity-feature h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

/* ===== MODERN PARTNERS SECTION ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xxl);
}

.partner-logo {
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

.partner-cta {
    text-align: center;
    margin-top: var(--spacing-xxl);
    padding: var(--spacing-xxl);
    background: var(--background-off-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
}

/* ===== MODERN DOWNLOAD SECTION ===== */
.download .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.download-content, .download-image {
    width: 100%;
}

.app-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

.app-btn {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.app-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.app-btn img {
    height: 60px;
    border-radius: var(--border-radius-md);
}

/* ===== MODERN COMMUNITY SECTION ===== */
.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xxl);
}

.stat {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--background-off-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-text {
    background: var(--background-off-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

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

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.testimonial-author p {
    color: var(--text-medium);
    margin: 0;
}

/* ===== MODERN CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Contact Form Styles */
.contact-form {
    background: var(--background-off-white);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* Contact Info Styles */
.contact-info {
    background: linear-gradient(135deg, var(--background-warm), #fff);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 160, 0, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--background-off-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: var(--spacing-md);
    width: 30px;
    text-align: center;
    margin-top: 0.25rem;
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 1rem;
    font-weight: 600;
}

.info-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.social-links {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 160, 0, 0.2);
}

.social-links h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: var(--spacing-md);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.social-icons a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-icons a i {
    font-size: 1.2rem;
}

/* ===== MODERN FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--text-dark), #34495E);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFFFFF" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius-md);
}

.footer-logo img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.link-column h3 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.link-column ul li {
    margin-bottom: var(--spacing-sm);
}

.link-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-column a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .hero .container,
    .download .container,
    .activity-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-image img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content,
    .hero-image,
    .download-content,
    .download-image,
    .activity-image,
    .activity-content {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .recipe-app-promo {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    section {
        padding: var(--spacing-xl) 0;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: var(--spacing-lg);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-form,
    .contact-info {
        padding: var(--spacing-lg);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    button[type="submit"] {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== MODERN ENHANCEMENTS ===== */

/* Glassmorphism effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Modern card hover effects */
.feature-card, .product-card, .testimonial {
    position: relative;
    overflow: hidden;
}

.feature-card::before, .product-card::before, .testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before, .product-card:hover::before, .testimonial:hover::before {
    left: 100%;
}

/* Modern button enhancements */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(100%);
}

/* Modern form enhancements */
.form-group input,
.form-group select,
.form-group textarea {
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

/* Modern navigation enhancements */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    left: 0;
    opacity: 0.1;
}

/* Modern hero section enhancements */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Modern feature icon enhancements */
.feature-icon {
    position: relative;
    overflow: hidden;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Modern testimonial enhancements */
.testimonial-text {
    position: relative;
    overflow: hidden;
}

.testimonial-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial:hover .testimonial-text::after {
    transform: scaleX(1);
}

/* Modern contact form enhancements */
.contact-form {
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Modern footer enhancements */
footer {
    position: relative;
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Modern selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Modern focus styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Modern loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}
