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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Interactive Video Carousel */
.video-carousel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    user-select: none;
}

.video-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: scale(1.1);
}

.video-slide.active {
    opacity: 1;
    transform: scale(1);
}

.video-slide.prev {
    transform: translateX(-100%) scale(0.9);
}

.video-slide.next {
    transform: translateX(100%) scale(0.9);
}

.carousel-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.9;
    /* Mobile video optimization */
    -webkit-playsinline: true;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Prevent video controls on mobile */
    pointer-events: none;
}

/* Navigation Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    opacity: 0.7;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 255, 255, 0.3);
}

.carousel-btn:active {
    transform: scale(1.05);
}

/* Video Indicators */
.video-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.15rem;
    z-index: 10;
}

.indicator {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.indicator:hover::before {
    width: 100%;
    height: 100%;
}

.indicator:hover {
    transform: scale(2.5);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 6px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1);
    box-shadow: 
        0 0 6px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(255, 255, 255, 1);
}

.indicator.active::before {
    width: 70%;
    height: 70%;
}

/* Auto-play Control */
.autoplay-control {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.autoplay-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

.autoplay-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: scale(1.05);
}

.autoplay-btn .hidden {
    display: none;
}

/* Touch/Swipe Feedback */
.video-carousel.swiping {
    transition: none;
}

.video-slide.swiping {
    transition: none;
}

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 249, 250, 0.15) 100%);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    padding: 0.7rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 249, 250, 0.25) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .logo {
    height: 50px;
    width: 50px;
}

.navbar.scrolled .brand-text {
    font-size: 1.7rem;
}

/* Hero Section Spacing for Fixed Navbar */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; /* Space for fixed navbar */
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e91e63;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    background: linear-gradient(45deg, #ffeef8, #fff5f5);
    padding: 3px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.5);
}

/* Premium Brand Text Styling for MO's CAKE N MORE */
.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-left: 0.8rem;
    position: relative;
    
    /* Sophisticated Gradient Text Effect */
    background: linear-gradient(135deg, 
        #8B4513 0%,     /* Rich Brown */
        #D2691E 25%,    /* Chocolate */
        #F4A460 50%,    /* Sandy Brown */
        #DEB887 75%,    /* Burlywood */
        #8B4513 100%    /* Rich Brown */
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Smooth Animation */
    animation: premiumGradientShift 6s ease-in-out infinite;
    
    /* Enhanced Text Shadow for Premium Look */
    filter: drop-shadow(2px 2px 4px rgba(139, 69, 19, 0.4))
            drop-shadow(0 0 8px rgba(244, 164, 96, 0.3));
    
    /* Professional Letter Spacing */
    letter-spacing: 1.2px;
    
    /* Subtle 3D Transform */
    transform: perspective(400px) rotateY(-3deg);
    transform-style: preserve-3d;
    
    /* Smooth Transitions */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Text Decoration */
    text-transform: uppercase;
    font-variant: small-caps;
}

.brand-text::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #8B4513, 
        #D2691E, 
        #F4A460, 
        #D2691E, 
        #8B4513, 
        transparent
    );
    border-radius: 2px;
    animation: premiumUnderlineGlow 4s ease-in-out infinite;
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.brand-text::after {
    content: '🧁';
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 1rem;
    animation: cakeFloat 3s ease-in-out infinite;
    opacity: 0.8;
    filter: drop-shadow(1px 1px 2px rgba(139, 69, 19, 0.4));
}

/* Premium Hover Effects for Brand Text */
.brand-text:hover {
    transform: perspective(400px) rotateY(-3deg) scale(1.08);
    filter: drop-shadow(3px 3px 6px rgba(139, 69, 19, 0.6))
            drop-shadow(0 0 12px rgba(244, 164, 96, 0.5));
    letter-spacing: 1.4px;
}

.brand-text:hover::before {
    height: 4px;
    opacity: 1;
    box-shadow: 0 3px 12px rgba(139, 69, 19, 0.5);
}

.brand-text:hover::after {
    animation: cakeFloatHover 1s ease-in-out infinite;
    transform: scale(1.2);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    left: 100%;
}

/* Keyframe Animations for Brand Text */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

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

@keyframes brandUnderlineGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes sparkleHover {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.4) rotate(360deg);
    }
}

/* Premium Brand Animations */
@keyframes premiumGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes premiumUnderlineGlow {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(1);
        box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.05);
        box-shadow: 0 4px 16px rgba(139, 69, 19, 0.5);
    }
}

@keyframes cakeFloat {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        opacity: 0.8;
        transform: translateY(-3px) rotate(5deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-6px) rotate(0deg);
    }
    75% {
        opacity: 0.8;
        transform: translateY(-3px) rotate(-5deg);
    }
}

@keyframes cakeFloatHover {
    0%, 100% {
        transform: scale(1.2) translateY(0px) rotate(0deg);
    }
    25% {
        transform: scale(1.3) translateY(-5px) rotate(10deg);
    }
    50% {
        transform: scale(1.4) translateY(-8px) rotate(0deg);
    }
    75% {
        transform: scale(1.3) translateY(-5px) rotate(-10deg);
    }
}

/* Hero Section Styles */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #e91e63 50%, #9c27b0 75%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 6s ease-in-out infinite;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    text-align: center;
    transform: perspective(1000px) rotateX(5deg);
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.08);
    z-index: -1;
    transform: translate(3px, 3px);
    filter: blur(1px);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    letter-spacing: 0.8px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: subtitleFadeIn 2s ease-out 0.5s forwards;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    opacity: 0;
    animation: buttonsSlideUp 2s ease-out 1s forwards;
}

/* Base Button Styling */
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 180px;
}

.hero-cta::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.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

/* Primary CTA - Our Services */
.primary-cta {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 50%, #673ab7 100%);
    color: white;
    box-shadow: 
        0 8px 25px rgba(233, 30, 99, 0.4),
        0 4px 15px rgba(156, 39, 176, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.primary-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(233, 30, 99, 0.6),
        0 8px 25px rgba(156, 39, 176, 0.5);
    background: linear-gradient(135deg, #f06292 0%, #ba68c8 50%, #9575cd 100%);
}

.primary-cta:active {
    transform: translateY(-2px) scale(1.02);
}

/* Secondary CTA - View Gallery */
.secondary-cta {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.secondary-cta:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.secondary-cta:active {
    transform: translateY(-2px) scale(1.02);
}

/* Features Section Styles */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #fafafa 25%, 
        #f5f5f5 50%, 
        #fafafa 75%, 
        #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2c1810 0%, #e91e63 50%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(44, 24, 16, 0.1);
}

.features-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #6b5b4f;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-icon svg {
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.9);
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #e91e63;
}

.feature-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6b5b4f;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-description {
    opacity: 1;
}

/* About Us Section Styles */
.about-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #faf8f5 0%, 
        #f8f4f0 25%, 
        #f5f1ec 50%, 
        #f8f4f0 75%, 
        #faf8f5 100%);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(233, 30, 99, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    
    background: linear-gradient(135deg, 
        #8B4513 0%,
        #D2691E 25%,
        #F4A460 50%,
        #DEB887 75%,
        #8B4513 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: premiumGradientShift 6s ease-in-out infinite;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    border-radius: 2px;
    animation: premiumUnderlineGlow 3s ease-in-out infinite;
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #6b5b4f;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Main Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Story Section */
.story-section {
    background: rgba(255, 255, 255, 0.7);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(139, 69, 19, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #9c27b0, #673ab7);
    border-radius: 20px 20px 0 0;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 30px;
    position: relative;
}

.story-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 25px;
    text-align: justify;
}

.story-description:last-child {
    margin-bottom: 0;
}

/* Baker Profile */
.baker-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(139, 69, 19, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.baker-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #673ab7, #9c27b0, #e91e63);
    border-radius: 20px 20px 0 0;
}

.baker-image {
    position: relative;
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f4f0, #f0e6d6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(139, 69, 19, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.profile-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(233, 30, 99, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.profile-placeholder:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out infinite;
}

.profile-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2),
        0 8px 25px rgba(139, 69, 19, 0.3);
}

.baker-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 20px;
}

.baker-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a4a3a;
    text-align: justify;
    margin-bottom: 25px;
}

/* Contact Baker Button */
.contact-baker-btn {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.contact-baker-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 ease;
}

.contact-baker-btn:hover::before {
    left: 100%;
}

.contact-baker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.contact-baker-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

/* Baker Social Media */
.baker-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-link svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Instagram */
.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.instagram::before {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
}

/* TikTok */
.social-link.tiktok {
    background: linear-gradient(45deg, #000000, #ff0050);
    color: white;
}

.social-link.tiktok::before {
    background: linear-gradient(45deg, #ff0050, #000000);
}

/* Snapchat */
.social-link.snapchat {
    background: linear-gradient(45deg, #fffc00, #fffc00);
    color: #000000;
}

.social-link.snapchat::before {
    background: linear-gradient(45deg, #fff700, #fffc00);
}

.social-link.snapchat:hover {
    color: #000000;
}

/* Values Section */
.values-section {
    text-align: center;
}

.values-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #e91e63, #9c27b0);
    border-radius: 2px;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(139, 69, 19, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f8f4f0, #f0e6d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.9);
}

.value-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 15px;
}

.value-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b5b4f;
    opacity: 0.9;
}

/* Animations */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Additional styling for better visual appeal */
.navbar-brand::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #e91e63, transparent);
    border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
        flex-direction: row;
        justify-content: space-between;
        position: fixed;
    }
    
    .navbar.scrolled {
        padding: 0.6rem 1rem;
    }
    
    .hero-section {
        padding-top: 80px; /* Reduced for mobile */
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide navigation links by default on mobile */
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        z-index: 1000;
    }
    
    /* Show navigation when mobile menu is active */
    .navbar-nav.mobile-menu-active {
        display: flex;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background: rgba(233, 30, 99, 0.05);
        transform: none;
    }
    
    .logo {
        height: 50px;
        width: 50px;
    }
    
    .brand-text {
        font-size: 1.6rem;
        margin-left: 0.5rem;
        transform: perspective(350px) rotateY(-2deg);
        letter-spacing: 1px;
        font-weight: 600;
    }
    
    .brand-text::before {
        height: 2px;
        bottom: -3px;
    }
    
    .brand-text::after {
        font-size: 0.9rem;
        top: -8px;
        right: -18px;
    }
    
    .navbar-brand::after {
        display: none;
    }
    
    /* Mobile Video Carousel Adjustments */
    .video-carousel-container {
        /* Ensure video container doesn't trigger fullscreen */
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
    
    .carousel-video {
        /* Enhanced mobile video optimization */
        -webkit-playsinline: true !important;
        playsinline: true !important;
        /* Prevent video from going fullscreen on tap */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        /* Disable video controls completely on mobile */
        pointer-events: none;
        /* Ensure proper sizing on mobile */
        max-width: 100%;
        max-height: 100vh;
        object-fit: cover;
    }
    
    .video-slide {
        /* Prevent touch events from interfering */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        touch-action: none;
    }
    
    .carousel-controls {
        padding: 0 1rem;
        /* Ensure controls are accessible on mobile */
        z-index: 15;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 0.8;
        /* Improve touch target size */
        min-width: 44px;
        min-height: 44px;
        /* Prevent accidental video interaction */
        z-index: 20;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .video-indicators {
        bottom: 1.5rem;
        gap: 0.1rem;
        /* Ensure indicators are above video */
        z-index: 15;
    }
    
    .indicator {
        width: 2px;
        height: 2px;
        /* Improve touch target size */
        min-width: 4px;
        min-height: 4px;
        /* Center the visual indicator within the touch target */
        display: flex;
        align-items: center;
        justify-content: center;
        /* Make touch target invisible, only the inner dot shows */
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .indicator::after {
        content: '';
        width: 1px;
        height: 1px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    }

    /* Make the active indicator dot slightly larger for visibility on mobile */
    .indicator.active::after {
        width: 1.5px;
        height: 1.5px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.9), 0 0 6px rgba(255, 255, 255, 0.9);
    }
    
    .autoplay-control {
        top: 1.5rem;
        right: 1.5rem;
        /* Ensure autoplay control is above video */
        z-index: 15;
    }
    
    .autoplay-btn {
        width: 40px;
        height: 40px;
        /* Improve touch target size */
        min-width: 44px;
        min-height: 44px;
        z-index: 20;
    }
    
    .autoplay-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* Features Section - Mobile Responsive */
    .features-section {
        padding: 80px 0;
    }
    
    .features-container {
        padding: 0 1rem;
    }
    
    .features-header {
        margin-bottom: 60px;
    }
    
    .features-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 40px 30px;
        margin: 0 1rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .feature-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .feature-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* About Us Section - Mobile Responsive */
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 1rem;
    }
    
    .about-header {
        margin-bottom: 60px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .story-section {
        padding: 30px 25px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .baker-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 25px;
        text-align: center;
    }
    
    .profile-placeholder {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
    
    .baker-name {
        font-size: 1.8rem;
    }
    
    .baker-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .contact-baker-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .baker-social {
        justify-content: center;
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .values-title {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-name {
        font-size: 1.3rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0.8rem;
    }
    
    .navbar.scrolled {
        padding: 0.5rem 0.8rem;
    }
    
    .hero-section {
        padding-top: 70px; /* Further reduced for small mobile */
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    .logo {
        height: 45px;
        width: 45px;
    }
    
    .brand-text {
        font-size: 1.4rem;
        margin-left: 0.4rem;
        transform: perspective(200px) rotateY(-1deg);
        letter-spacing: 0.8px;
        font-weight: 600;
    }
    
    .brand-text::before {
        height: 2px;
        bottom: -2px;
    }
    
    .brand-text::after {
        font-size: 0.8rem;
        top: -7px;
        right: -12px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }
    
    /* Hero Section Mobile Optimizations */
    .hero-content {
        padding: 2rem 1rem;
        max-width: 95%;
    }
    
    .hero-text {
        padding: 2rem 1.5rem;
        max-width: 100%;
        backdrop-filter: blur(8px);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 160px;
        width: 100%;
        max-width: 280px;
    }
    
    /* About Us Section - Small Mobile Responsive */
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 0.8rem;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-content {
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .story-section {
        padding: 25px 20px;
    }
    
    .story-title {
        font-size: 1.8rem;
    }
    
    .story-description {
        font-size: 0.95rem;
    }
    
    .baker-profile {
        padding: 25px 20px;
        gap: 25px;
    }
    
    .profile-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .baker-name {
        font-size: 1.6rem;
    }
    
    .baker-description {
        font-size: 0.95rem;
    }
    
    .contact-baker-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .baker-social {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .values-title {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-name {
        font-size: 1.2rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
}

/* Tablet Responsive Design */
@media (min-width: 481px) and (max-width: 768px) {
    .brand-text {
        font-size: 1.7rem;
        margin-left: 0.6rem;
        letter-spacing: 1.1px;
        font-weight: 650;
    }
    
    .brand-text::before {
        height: 2.5px;
        bottom: -3px;
    }
    
    .brand-text::after {
        font-size: 0.95rem;
        top: -9px;
        right: -16px;
    }
    
    .hero-content {
        padding: 3rem 2rem;
        max-width: 90%;
    }
    
    .hero-text {
        padding: 2.5rem 2rem;
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 3.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        gap: 1.2rem;
        margin-top: 1.8rem;
    }
    
    .hero-cta {
        padding: 1.1rem 2.4rem;
        font-size: 1.05rem;
        min-width: 170px;
    }
    
    /* Features Section - Tablet Responsive */
    .features-section {
        padding: 100px 0;
    }
    
    .features-container {
        padding: 0 1.5rem;
    }
    
    .features-header {
        margin-bottom: 70px;
    }
    
    .features-title {
        font-size: 3rem;
        margin-bottom: 18px;
    }
    
    .features-subtitle {
        font-size: 1.2rem;
        padding: 0 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
        margin-top: 50px;
    }
    
    .feature-card {
        padding: 45px 35px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 28px;
    }
    
    .feature-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .feature-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .feature-description {
        font-size: 1.05rem;
        line-height: 1.55;
    }
    
    /* About Us Section - Tablet Responsive */
    .about-section {
        padding: 100px 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .about-header {
        margin-bottom: 70px;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        gap: 50px;
        margin-bottom: 70px;
    }
    
    .story-section {
        padding: 40px 35px;
    }
    
    .story-title {
        font-size: 2.3rem;
    }
    
    .baker-profile {
        grid-template-columns: auto 1fr;
        gap: 35px;
        padding: 40px 35px;
    }
    
    .profile-placeholder {
        width: 130px;
        height: 130px;
    }
    
    .baker-name {
        font-size: 2rem;
    }
    
    .contact-baker-btn {
        padding: 11px 28px;
        font-size: 0.95rem;
    }
    
    .baker-social {
        gap: 14px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
    }
    
    .values-title {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 35px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-name {
        font-size: 1.4rem;
    }
}

/* Large Tablet and Small Desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        padding: 4rem 2.5rem;
        max-width: 85%;
    }
    
    .hero-text {
        padding: 3rem 2.5rem;
        max-width: 650px;
    }
    
    .hero-title {
        font-size: 3.8rem;
        margin-bottom: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2.8rem;
    }
    
    .hero-buttons {
        gap: 1.3rem;
        margin-top: 2rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-content {
        padding: 1.5rem 2rem;
    }
    
    .hero-text {
        padding: 1.5rem 2rem;
        backdrop-filter: blur(12px);
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hero-cta {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        min-width: 140px;
    }
}

/* Counter Section */
.counter-section {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e91e63;
    border-bottom: 1px solid #e91e63;
}



.counter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.counter-content {
    text-align: center;
    color: #e91e63;
}

.counter-number {
    font-size: 8rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #e91e63 0%, #f06292 50%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}

.counter-label {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e91e63;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .counter-section {
        padding: 80px 0;
    }
    
    .counter-container {
        padding: 0 1rem;
    }
    
    .counter-number {
        font-size: 5rem;
        margin-bottom: 0.5rem;
    }
    
    .counter-label {
        font-size: 1.8rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .counter-section {
        padding: 60px 0;
    }
    
    .counter-number {
        font-size: 4rem;
    }
    
    .counter-label {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
    }
}

/* Best New Selections Section */
.selections-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
}

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

.selections-header {
    text-align: center;
    margin-bottom: 60px;
}

.selections-title {
    font-size: 3rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #e91e63, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.selections-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(233, 30, 99, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Ensure real photos scale nicely in product image area */
.product-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Utility: fluid, aspect-safe images anywhere in the site */
.img-fluid {
    display: block;
    max-width: 100%;
    height: auto;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #e91e63, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-btn {
    background: linear-gradient(45deg, #e91e63, #f06292);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-btn:hover {
    background: linear-gradient(45deg, #c2185b, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

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

/* WhatsApp Order Button - Prominent, clear styling */
.whatsapp-order-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 28px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.whatsapp-order-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.whatsapp-order-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .selections-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .selections-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .selections-section {
        padding: 80px 0;
    }
    
    .selections-container {
        padding: 0 15px;
    }
    
    .selections-header {
        margin-bottom: 40px;
    }
    
    .selections-title {
        font-size: 2.2rem;
    }
    
    .selections-subtitle {
        font-size: 1.1rem;
    }
    
    .selections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        border-radius: 15px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .selections-section {
        padding: 60px 0;
    }
    
    .selections-title {
        font-size: 1.8rem;
    }
    
    .selections-subtitle {
        font-size: 1rem;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1.4rem;
    }
    
    .product-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #e91e63, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #e91e63, #f06292);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.service-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    filter: drop-shadow(0 4px 8px rgba(233, 30, 99, 0.2));
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.testimonial-stars {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #e91e63;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.author-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-carousel {
        margin: 0 20px;
    }
    
    .testimonial-content {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .carousel-controls {
        left: -40px;
        right: -40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-carousel {
        margin: 0 10px;
    }
    
    .testimonial-content {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 10px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .carousel-indicators {
        margin-top: 25px;
    }
}
/* Choose a Cake Now Link Styling */
.choose-cake-link {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(233, 30, 99, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.choose-cake-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(233, 30, 99, 0.4);
    background: linear-gradient(135deg, #d81b60, #ec407a);
}

.choose-cake-link:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(233, 30, 99, 0.3);
}

.choose-cake-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.15), 0 10px 24px rgba(233, 30, 99, 0.3);
}

/* Add a subtle arrow that animates on hover */
.choose-cake-link::after {
    content: '→';
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.25s ease;
}

.choose-cake-link:hover::after {
    transform: translateX(4px);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .choose-cake-link {
        padding: 12px 22px;
        font-size: 0.95rem;
        letter-spacing: 0.4px;
    }
}

@media (max-width: 480px) {
    .choose-cake-link {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
}
/* Center the Services CTA container */
.services-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 40px;
}
/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(233, 30, 99, 0.15);
    padding: 60px 0 30px;
    color: #2c1810;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #f06292);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.25);
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #6b5b4f;
    margin: 6px 0 0;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #2c1810;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #e91e63;
    transform: translateX(2px);
}

.footer-social .social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(233, 30, 99, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e63;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffedf4, #ffffff);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px dashed rgba(233, 30, 99, 0.15);
}

.copyright {
    margin: 0;
    font-size: 0.95rem;
    color: #6b5b4f;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-link {
    color: #2c1810;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-link:hover {
    color: #e91e63;
}

.separator {
    color: rgba(0, 0, 0, 0.3);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 25px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-nav, .footer-social {
        text-align: center;
    }
    .footer-social .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 42px;
        height: 42px;
    }
    .footer-title {
        font-size: 1.2rem;
    }
}
/* Contact Page */
.contact-section {
    min-height: 100vh;
    padding: 120px 0 60px; /* top space for fixed navbar */
    background: linear-gradient(180deg, #ffffff 0%, #fff6fa 100%);
}

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

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #2c1810;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: #6b5b4f;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: start;
}

.contact-form-card,
.contact-info-card {
    background: #fff;
    border: 1px solid rgba(233, 30, 99, 0.15);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: 26px;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c1810;
    margin: 0 0 16px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-row label {
    font-weight: 600;
    color: #2c1810;
}

.required {
    color: #e91e63;
}

.form-row input,
.form-row textarea {
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-row textarea {
    resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12);
}

.field-hint {
    font-size: 0.85rem;
    color: #8a7a6f;
}

.form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.contact-submit {
    cursor: pointer;
}

.form-status {
    margin-top: 14px;
    font-weight: 600;
}

.form-status.info { color: #6b5b4f; }
.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: #fff0f6;
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(233, 30, 99, 0.18);
}

.info-content strong {
    display: block;
    color: #2c1810;
}

.info-content span {
    color: #6b5b4f;
}

/* Responsive: stack layout on smaller screens */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-title { font-size: 2rem; }
    .contact-card-title { font-size: 1.15rem; }
    .contact-form-card, .contact-info-card { padding: 20px; }
}
