/* ==========================================
   CRUSTY - CSS STYLESHEET
   Bold & Edgy Chicken Restaurant
   ========================================== */

:root {
    /* Colors */
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --mid-gray: #2a2a2a;
    --light-gray: #3a3a3a;
    --red: #DC2626;
    --red-dark: #991B1B;
    --red-light: #EF4444;
    --orange: #F97316;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --text-gray: #a0a0a0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.7);
    --shadow-red: 0 4px 20px rgba(220, 38, 38, 0.4);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

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

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--black);
    border-bottom: 2px solid var(--red);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 3px;
    transition: all var(--transition-fast);
}

.logo i {
    font-size: 2rem;
    color: var(--red);
    filter: drop-shadow(0 0 10px var(--red));
}

.logo:hover {
    transform: scale(1.05);
    color: var(--red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--off-white);
    padding: 0.5rem 0;
    position: relative;
    transition: all var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition-fast);
}

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

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

.btn-order {
    background: var(--red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-red);
}

.btn-order:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.6);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-gray);
    z-index: 2000;
    padding: 2rem;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

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

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--red);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-close:hover {
    transform: rotate(90deg);
}

.mobile-menu {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--off-white);
    padding: 1rem;
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu a i {
    color: var(--red);
}

.mobile-menu a:hover {
    border-left-color: var(--red);
    padding-left: 1.5rem;
    color: var(--red);
}

.mobile-order {
    background: var(--red);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    text-align: center;
    padding: 1rem !important;
    border-left: none !important;
}

.mobile-order:hover {
    background: var(--red-dark);
    padding-left: 1rem !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 26, 0.85)),
        url('https://images.unsplash.com/photo-1598103442097-8b74394b95c6?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(220, 38, 38, 0.03) 2px,
        rgba(220, 38, 38, 0.03) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--mid-gray);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--red);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-badge i {
    color: var(--red);
    animation: flicker 3s infinite;
}

.hero-badge span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(220, 38, 38, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 4px;
    line-height: 1;
}

.title-accent {
    display: block;
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--red);
    text-shadow: 
        0 0 30px rgba(220, 38, 38, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.9);
    letter-spacing: 6px;
    line-height: 1;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--red);
    filter: drop-shadow(0 0 10px var(--red));
}

.feature-item span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    color: var(--off-white);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--red);
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-family {
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-xl);
}

.btn-family:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.7);
}

.btn-footer {
    background: var(--red);
    color: var(--white);
}

.btn-footer:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

/* ==========================================
   SECTION STYLING
   ========================================== */
.menu-section,
.specialites-section,
.why-section,
.contact-section {
    padding: 6rem 0;
    position: relative;
}

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

.section-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 1rem;
}

.section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--red);
    margin: 0 auto;
    box-shadow: 0 0 10px var(--red);
}

/* ==========================================
   MENU CARDS
   ========================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--dark-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--light-gray);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--red);
}

.menu-card.featured {
    border: 2px solid var(--red);
}

.menu-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.menu-card-badge.popular {
    background: var(--orange);
}

.menu-card-badge.special {
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.menu-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-gray), transparent);
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-content {
    padding: 1.5rem;
}

.menu-card-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.menu-card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--red);
    letter-spacing: 1px;
}

.price small {
    font-size: 1.2rem;
}

.btn-card {
    background: var(--mid-gray);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.btn-card:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateX(3px);
}

/* ==========================================
   SPECIALITES SECTION
   ========================================== */
.specialites-section {
    background: var(--dark-gray);
}

.specialites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.special-card {
    background: var(--mid-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.special-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
}

.special-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.special-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.special-card:hover .special-image img {
    transform: scale(1.1);
}

.special-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
}

.special-overlay i {
    font-size: 2.5rem;
    color: var(--red);
    filter: drop-shadow(0 0 15px var(--red));
}

.special-content {
    padding: 1.5rem;
    text-align: center;
}

.special-content h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.special-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.special-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.special-price small {
    font-size: 1.2rem;
}

.btn-special {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all var(--transition-normal);
}

.btn-special:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* ==========================================
   FAMILY BOX SECTION
   ========================================== */
.family-section {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.9)),
        url('https://images.unsplash.com/photo-1626082927389-6cd097cdc6ec?w=1920&h=800&fit=crop') center/cover;
    background-attachment: fixed;
}

.family-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.family-content {
    padding: 2rem;
}

.family-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-red);
}

.family-badge i {
    color: var(--white);
}

.family-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.family-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.family-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.family-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: var(--mid-gray);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--red);
}

.family-item i {
    font-size: 1.5rem;
    color: var(--red);
}

.family-item span {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.family-price-box {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--red);
}

.family-old-price {
    display: block;
    font-size: 1.5rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.family-price {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.family-price small {
    font-size: 2rem;
}

.family-save {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
}

.family-image {
    position: relative;
}

.family-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.family-badge-large {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: pulse 2s infinite;
}

.family-badge-large span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--white);
}

/* ==========================================
   WHY CRUSTY SECTION
   ========================================== */
.why-section {
    background: var(--dark-gray);
}

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

.why-card {
    background: var(--mid-gray);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-gray);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--red);
    transition: all var(--transition-normal);
}

.why-card:hover .why-icon {
    background: var(--red);
    transform: scale(1.1);
}

.why-icon i {
    font-size: 2rem;
    color: var(--red);
    transition: color var(--transition-normal);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--dark-gray);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--red);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    background: var(--mid-gray);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--red);
    margin-top: 4px;
}

.contact-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--red);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--red-light);
}

.contact-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-socials a {
    width: 50px;
    height: 50px;
    background: var(--dark-gray);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--red);
    border: 2px solid var(--red);
    transition: all var(--transition-normal);
}

.contact-socials a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid var(--red);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--red);
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--red-light);
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--red-dark);
    transform: translateY(-3px);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 992px) {
    .nav-menu,
    .btn-order {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .family-hero {
        grid-template-columns: 1fr;
    }
    
    .family-image {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-grid,
    .specialites-grid {
        grid-template-columns: 1fr;
    }
    
    .family-details {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 55px;
        height: 55px;
    }
    
    .scroll-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-accent {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .family-price {
        font-size: 3rem;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 2px;
}

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}