/* ==========================================
   Sweet Bliss Cakes - Premium Stylesheet
   ========================================== */

/* CSS Variables - New Brand Colors */
:root {
    --primary-pink: #ff4d6d;
    --primary-pink-light: #ff6b85;
    --primary-pink-dark: #e63950;
    --soft-pink: #ffe3e9;
    --light-pink: #fff0f3;
    --cream: #fdf6f0;
    --cream-dark: #f5e6d8;
    --white: #FFFFFF;
    --dark-text: #2D2D2D;
    --secondary-text: #666666;
    --accent-gold: #D4AF37;
    --accent-gold-light: #E5C158;
    --pastel-yellow: #FFF8F0;
    --shadow-light: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-pink: rgba(255, 77, 109, 0.25);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

/* Typography */
.section-subtitle {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--dark-text);
    margin-bottom: 45px;
    font-weight: 600;
}

.section-title,
.section-subtitle {
    display: block;
    text-align: center;
}

/* ==========================================
   Logo Styles - Premium Brand Identity
   ========================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark-text);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-dark));
    border-radius: 12px;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px var(--shadow-pink);
}

.logo-text {
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary-pink);
    font-style: italic;
}

.logo .logo-accent {
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
}

/* Buttons - Premium Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-dark));
    color: var(--white);
    box-shadow: 0 6px 25px var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-pink);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.05rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    width: 100%;
    padding: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.btn-nav-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-nav-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ==========================================
   Floating WhatsApp Button with Text
   ========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-whatsapp-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 14px 24px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp-content i {
    font-size: 1.4rem;
}

.floating-whatsapp-text {
    white-space: nowrap;
}

.floating-whatsapp:hover .floating-whatsapp-content {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

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

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 30px var(--shadow-light);
}

.navbar.scrolled {
    box-shadow: 0 4px 40px var(--shadow-medium);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-text);
    transition: var(--transition);
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-pink);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: var(--dark-text);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) { opacity: 0; }

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Backdrop - Base Styles */
.nav-backdrop {
    display: none;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&h=1080&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 109, 0.92), rgba(255, 77, 109, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 18px;
    text-shadow: 2px 2px 30px rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-delivery, .hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 15px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 35px;
    backdrop-filter: blur(10px);
}

.hero-delivery i { color: #25D366; }

.hero-urgency {
    background: rgba(0, 0, 0, 0.2);
    color: #FFD93D;
    font-weight: 500;
}

.hero-urgency i { color: #FF6B6B; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* ==========================================
   Pricing Banner
   ========================================== */
.pricing-banner {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-pink-dark));
    padding: 40px 0;
    margin-top: -1px;
}

.pricing-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.pricing-item i {
    font-size: 1.8rem;
    opacity: 0.9;
}

.pricing-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.pricing-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: 110px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 60px var(--shadow-medium);
}

.about-image-accent {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-pink);
    border-radius: 20px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -25px;
    left: 35px;
    background: var(--primary-pink);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 35px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 12px 35px var(--shadow-pink);
}

.about-content {
    padding: 20px 0;
}

.about-content .section-subtitle,
.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 22px;
    line-height: 1.85;
}

.about-text strong {
    color: var(--primary-pink);
    font-weight: 600;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--dark-text);
}

.feature i {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

/* ==========================================
   Meet Our Baker Section
   ========================================== */
.meet-baker {
    padding: 110px 0;
    background: var(--cream);
}

.baker-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
    background: var(--white);
    padding: 55px;
    border-radius: 25px;
    box-shadow: 0 20px 60px var(--shadow-light);
}

.baker-image {
    position: relative;
    flex-shrink: 0;
}

.baker-image img {
    width: 300px;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.baker-image-border {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-pink);
    border-radius: 20px;
    z-index: -1;
}

.baker-content {
    flex: 1;
}

.baker-content .section-subtitle,
.baker-content .section-title {
    text-align: left;
    margin-bottom: 22px;
}

.baker-text {
    font-size: 1rem;
    color: var(--secondary-text);
    line-height: 1.85;
    margin-bottom: 18px;
}

.baker-signature {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 2px solid var(--soft-pink);
}

.baker-signature span {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: var(--primary-pink);
}

.baker-signature p {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-top: 5px;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: 110px 0;
    background: var(--light-pink);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: var(--white);
    padding: 45px 32px;
    border-radius: 22px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 12px 45px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px var(--shadow-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--soft-pink), var(--light-pink));
    border-radius: 50%;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2.1rem;
    color: var(--primary-pink);
}

.service-card:hover .service-icon {
    background: var(--primary-pink);
}

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

.service-title {
    font-size: 1.55rem;
    color: var(--dark-text);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-price {
    display: inline-block;
    background: var(--soft-pink);
    color: var(--primary-pink-dark);
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose-us {
    padding: 110px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-choose-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 22px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 12px 45px var(--shadow-light);
    border: 2px solid transparent;
}

.why-choose-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.why-choose-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--soft-pink), var(--light-pink));
    border-radius: 50%;
}

.why-choose-icon i {
    font-size: 1.9rem;
    color: var(--primary-pink);
}

.why-choose-card h3 {
    font-size: 1.3rem;
    color: var(--dark-text);
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    padding: 110px 0;
    background: var(--pastel-yellow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 10px 35px var(--shadow-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 77, 109, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    padding: 110px 0;
    background: var(--light-pink);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: var(--white);
    padding: 38px;
    border-radius: 22px;
    box-shadow: 0 12px 45px var(--shadow-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px var(--shadow-medium);
}

.testimonial-rating {
    margin-bottom: 22px;
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--secondary-text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid var(--soft-pink);
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: var(--soft-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: 110px 0;
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 55px;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 15px 50px var(--shadow-light);
    border: 1px solid var(--soft-pink);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 22px;
    border: 2px solid var(--soft-pink);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(255, 77, 109, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 50px var(--shadow-light);
    border: 1px solid var(--soft-pink);
}

.contact-card h3 {
    font-size: 1.35rem;
    color: var(--dark-text);
    margin-bottom: 24px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--soft-pink);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-pink);
    border-radius: 50%;
    color: var(--primary-pink);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 4px;
}

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

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: var(--white);
    padding: 70px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand .logo-icon {
    background: var(--primary-pink);
}

.footer-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--primary-pink-light);
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

.footer-links h4,
.footer-services h4,
.footer-social h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--white);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 14px;
}

.footer-links a,
.footer-services a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary-pink-light);
    padding-left: 6px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-pink);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Scroll Animations
   ========================================== */
.reveal-left, .reveal-right, .reveal-up, .reveal-scale {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up { transform: translateY(50px); }
.reveal-scale { transform: scale(0.9); }

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-scale.active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================
   Responsive Styles - Enhanced
   ========================================== */

/* Large Tablet (1199px) */
@media (max-width: 1199px) {
    html, body {
        overflow-x: hidden;
    }
    
    .container { max-width: 960px; }
    
    .hero-title { font-size: 3.5rem; }
    
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    
    .why-choose-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    
    .gallery-grid { gap: 20px; }
    
    .footer-content { gap: 35px; }
}

/* Tablet (991px) */
@media (max-width: 991px) {
    html, body {
        overflow-x: hidden;
    }
    
    .container { max-width: 720px; }
    
    /* Navbar - Switch to mobile menu for tablets */
    .navbar { height: 75px; }
    
    .hamburger { display: block; width: 44px; height: 44px; }
    .hamburger span { height: 3px; }
    
    .btn-nav-whatsapp { display: none; }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active { left: 0; }
    
    .nav-link { font-size: 1.15rem; }
    
    .hero {
        padding: 110px 20px 70px;
        min-height: auto;
    }
    .hero-title {
        font-size: 3rem;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    /* Sections */
    .about, .meet-baker, .services, .why-choose-us, .gallery, 
    .testimonials, .contact { padding: 80px 0; }
    
    .section-title { font-size: 2.5rem; }
    
    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .service-card { padding: 35px 25px; }
    
    /* Why Choose Us */
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .why-choose-card { padding: 30px 20px; }
    
    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    
    /* Testimonials */
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .testimonial-card { padding: 32px; }
    
    /* Contact */
    .contact-wrapper { gap: 40px; }
    .contact-form { padding: 35px; }
    
    /* Footer */
    .footer { padding: 55px 0 20px; }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    
    /* Baker */
    .baker-wrapper { padding: 40px; gap: 40px; }
    .baker-image img { width: 260px; height: 340px; }
    
    /* About - tablet specific */
    .about-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-badge { left: 20px; bottom: -20px; }
    
    /* Pricing */
    .pricing-banner { padding: 35px 0; }
    
    /* Floating WhatsApp - show on tablet */
    .floating-whatsapp-text { display: none; }
    
    /* Nav Backdrop for tablet */
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
        display: block;
    }
    
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile Landscape (767px) */
@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
    }
    
    .container { max-width: 540px; box-sizing: border-box; }
    
    /* Navbar */
    .navbar { height: 70px; }
    .hamburger { display: block; width: 44px; height: 44px; }
    .hamburger span { height: 3px; }
    
    .btn-nav-whatsapp { display: none; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active { left: 0; }
    
    .nav-link { font-size: 1.15rem; }
    
    /* Hero */
    .hero {
        padding: 110px 20px 60px;
        min-height: auto;
        background-attachment: scroll;
    }
    .hero-title {
        font-size: 2.4rem;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .hero-delivery, .hero-urgency { 
        font-size: 0.85rem; 
        padding: 12px 20px; 
        display: inline-flex;
    }
    
    .btn-large { padding: 16px 32px; font-size: 1rem; min-height: 50px; }
    
    /* Sections */
    .about, .meet-baker, .services, .why-choose-us, .gallery, 
    .testimonials, .contact { padding: 60px 0; }
    
    .section-title { font-size: 2.1rem; }
    .section-subtitle { font-size: 0.9rem; }
    
    /* About */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-image { order: 1; }
    .about-content { order: 2; text-align: center; }
    .about-content .section-subtitle,
    .about-content .section-title { text-align: center; }
    .about-features { align-items: center; }
    .about-badge { left: 50%; transform: translateX(-50%); }
    
    /* Baker */
    .baker-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }
    
    .baker-image { margin: 0 auto; }
    .baker-image img { width: 220px; height: 280px; }
    
    .baker-content .section-subtitle,
    .baker-content .section-title { text-align: center; }
    
    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 22px; }
    .service-card { padding: 32px 24px; }
    .service-icon { width: 70px; height: 70px; }
    .service-icon i { font-size: 1.8rem; }
    .service-title { font-size: 1.4rem; }
    
    /* Why Choose Us */
    .why-choose-grid { grid-template-columns: 1fr; gap: 18px; }
    .why-choose-card { padding: 28px 22px; }
    .why-choose-icon { width: 65px; height: 65px; }
    
    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    
    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 22px; }
    .testimonial-card { padding: 28px; }
    
    /* Contact */
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contact-form { padding: 28px; }
    .contact-info { order: 2; }
    
    .form-group { margin-bottom: 20px; }
    .form-group input,
    .form-group textarea { padding: 14px 18px; min-height: 48px; }
    
    /* Pricing */
    .pricing-banner { padding: 28px 0; }
    .pricing-grid { flex-direction: column; gap: 20px; }
    
    /* Footer */
    .footer { padding: 45px 0 20px; }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    
    .social-icons { justify-content: center; }
    .social-icons a { width: 44px; height: 44px; }
    
    .footer-links a,
    .footer-services a { padding: 8px; display: inline-block; }
    
    /* Floating WhatsApp */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-whatsapp-content {
        padding: 12px 18px;
    }
    
    .floating-whatsapp-text {
        display: none;
    }
    
    /* Logo */
    .logo { font-size: 1.45rem; }
    .logo-icon { width: 36px; height: 36px; font-size: 0.95rem; }
}

/* Mobile Portrait (575px) */
@media (max-width: 575px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container { width: 100%; padding: 0 15px; box-sizing: border-box; max-width: 100%; }
    
    .hero-content {
        padding: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title, .hero-subtitle {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 110px 20px 60px;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-delivery, .hero-urgency {
        display: flex;
        flex-direction: column;
        font-size: 0.85rem;
        padding: 10px 18px;
        margin-bottom: 10px;
        width: 100%;
        max-width: 280px;
    }
    
    .scroll-indicator { display: none; }
    
    /* Sections */
    .about, .meet-baker, .services, .why-choose-us, .gallery, 
    .testimonials, .contact { padding: 50px 0; }
    
    .section-title { font-size: 1.85rem; }
    
    /* Buttons */
    .btn { padding: 14px 24px; font-size: 0.9rem; min-height: 44px; }
    .btn-large { padding: 14px 28px; font-size: 0.95rem; }
    
    /* Cards */
    .service-card { padding: 28px 20px; }
    .testimonial-card { padding: 24px; }
    .contact-form { padding: 24px; }
    .contact-card { padding: 24px; }
    
    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr; gap: 15px; }
    
    /* Baker */
    .baker-wrapper { padding: 24px; }
    .baker-image img { width: 180px; height: 240px; }
    
    /* Footer */
    .footer { padding: 40px 0 18px; }
    .footer-brand p { font-size: 0.85rem; }
    
    /* Logo */
    .logo { font-size: 1.3rem; }
    .logo-icon { width: 32px; height: 32px; font-size: 0.85rem; }
    
    /* Form */
    .form-group input,
    .form-group textarea { font-size: 0.9rem; padding: 12px 16px; }
    
    /* Contact item */
    .contact-item i { width: 40px; height: 40px; }
    
    /* About badge */
    .about-badge { padding: 10px 20px; font-size: 0.8rem; }
    
    /* Navbar */
    .navbar { height: 70px; }
    .nav-menu { top: 70px; height: calc(100vh - 70px); }
    
    /* Mobile Menu Backdrop */
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container { padding: 0 15px; box-sizing: border-box; }
    
    .hero-title { font-size: 1.75rem; line-height: 1.3; }
    .hero-subtitle { font-size: 0.85rem; }
    .section-title { font-size: 1.65rem; }
    
    .btn { padding: 12px 18px; font-size: 0.85rem; min-height: 42px; }
    .btn-large { padding: 12px 24px; font-size: 0.9rem; }
    
    .service-card, .testimonial-card, .contact-card { padding: 20px 15px; }
    
    .logo { font-size: 1.2rem; }
    .logo-icon { width: 30px; height: 30px; font-size: 0.8rem; }
    
    .nav-link { font-size: 1rem; }
}