:root {
    --primary: #FF6B6B;
    --primary-dark: #EE5A5A;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #2C3E50;
    --light: #F7F9FC;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Nunito', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background: var(--light);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-dog {
    font-size: 200px;
    animation: bounce 2s infinite;
}

.paw-prints {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    opacity: 0.5;
}

.paw-prints span {
    display: inline-block;
    animation: float 3s infinite;
}

.paw-prints span:nth-child(2) {
    animation-delay: 0.5s;
}

.paw-prints span:nth-child(3) {
    animation-delay: 1s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
    background: var(--secondary);
    color: var(--white);
}

.btn-small:hover {
    background: #3DB8B0;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.feature-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    font-size: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.footer h4 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--accent);
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-dog {
        font-size: 120px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, #FFE66D 0%, #FF6B6B 50%, #4ECDC4 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: Fredoka One, cursive;
    font-size: 3rem;
    color: #000;
    margin-bottom: 15px;
}

.page-header p,
.header-subtitle {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

/* SERVICES PAGE */
.services-detail {
    padding: 60px 0;
    background: #f8f9fa;
}

.service-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon-large {
    font-size: 100px;
    text-align: center;
    margin-bottom: 20px;
}

.service-detail-card h2 {
    font-family: Fredoka One, cursive;
    font-size: 2.5rem;
    text-align: center;
    color: #2C3E50;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B6B;
    text-align: center;
    margin-bottom: 20px;
}

.service-detail-card ul {
    margin: 20px 0;
    padding-left: 30px;
}

.service-detail-card li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-detail-card .btn {
    display: block;
    max-width: 300px;
    margin: 30px auto 0;
    text-align: center;
}

.pricing {
    padding: 60px 0;
    background: #2C3E50;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-family: Fredoka One, cursive;
    color: #FF6B6B;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

/* ABOUT PAGE */
.about-content {
    padding: 60px 0;
}

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

.about-text h2 {
    font-family: Fredoka One, cursive;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 30px;
}

.about-image .placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #FFE66D, #FF6B6B);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.team {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.team-card h3 {
    font-family: Fredoka One, cursive;
    font-size: 1.4rem;
}

.team-role {
    color: #FF6B6B;
    font-weight: 700;
}

.values {
    padding: 60px 0;
    background: linear-gradient(135deg, #4ECDC4, #2C3E50);
}

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

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.facility {
    padding: 60px 0;
}

.facility-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.facility-list li {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #FF6B6B;
}

/* GALLERY PAGE */
.gallery {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.gallery-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #FFE66D, #FF6B6B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.gallery-item p {
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

/* CONTACT PAGE */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: Fredoka One, cursive;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-icon {
    font-size: 30px;
}

.hours-box {
    background: #2C3E50;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    margin-top: 30px;
}

.hours-box h3 {
    font-family: Fredoka One, cursive;
    margin-bottom: 20px;
}

.hours-box ul {
    list-style: none;
    padding: 0;
}

.hours-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    font-family: Fredoka One, cursive;
    text-align: center;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FF6B6B;
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
}

.map-section {
    padding: 60px 0;
    background: #2C3E50;
}

.map-placeholder {
    background: #fff;
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        padding: 30px;
    }
}

/* ============================================
   ENHANCED STYLES - Services, About, Gallery, Contact
   ============================================ */

/* Header Graphics */
.header-graphics {
    margin-bottom: 30px;
}

.float-emoji {
    display: inline-block;
    font-size: 50px;
    margin: 0 20px;
    animation: float 3s ease-in-out infinite;
}

.float-emoji:nth-child(2) {
    animation-delay: 0.5s;
}

.float-emoji:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================================
   SERVICES PAGE - ENHANCED
   ============================================ */

.services-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
}

.service-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.service-box:nth-child(even) {
    direction: rtl;
}

.service-box:nth-child(even) > * {
    direction: ltr;
}

.daycare-box {
    border-top: 8px solid #FF6B6B;
}

.boarding-box {
    border-top: 8px solid #4ECDC4;
}

.grooming-box {
    border-top: 8px solid #FFE66D;
}

.service-visual {
    position: relative;
    text-align: center;
}

.big-emoji {
    font-size: 180px;
    animation: bounce 2s infinite;
}

.floating-paws {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.floating-paws span {
    font-size: 40px;
    opacity: 0.3;
    animation: float 3s ease-in-out infinite;
}

.floating-paws span:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-paws span:nth-child(3) {
    animation-delay: 1s;
}

.service-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B, #EE5A5A);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-badge.bg-blue {
    background: linear-gradient(135deg, #4ECDC4, #3DB8B0);
}

.service-badge.bg-green {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.service-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    font-weight: 600;
    color: #2C3E50;
}

.feature-icon {
    font-size: 28px;
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

/* Pricing Cards Section */
.pricing-cards {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #1a1a2e 100%);
}

.pricing-cards .section-title {
    color: #fff;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    position: relative;
}

.price-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B, #EE5A5A);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.price-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.price-header h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #2C3E50;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card li {
    padding: 15px 0;
    border-bottom: 2px dashed #f0f0f0;
    font-size: 1.1rem;
}

.price-card li strong {
    color: #2C3E50;
}

.save {
    background: #FFE66D;
    color: #2C3E50;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 10px;
}

/* ============================================
   ABOUT PAGE - ENHANCED
   ============================================ */

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.about-story-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.story-visual {
    position: relative;
    text-align: center;
}

.story-emoji-main {
    font-size: 200px;
    animation: bounce 2s infinite;
}

.floating-hearts {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-hearts span {
    font-size: 40px;
    opacity: 0.5;
    animation: float 3s ease-in-out infinite;
}

.floating-hearts span:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-hearts span:nth-child(3) {
    animation-delay: 1s;
}

.story-content h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.story-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 20px;
}

.stat-number {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

/* Team Section Enhanced */
.team-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

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

.section-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.team-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-card-enhanced {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card-enhanced:hover {
    transform: translateY(-10px);
}

.team-photo-bg {
    height: 200px;
    background: linear-gradient(135deg, #FF6B6B, #FFE66D);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-photo-bg.blue {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.team-photo-bg.green {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.team-photo-bg.yellow {
    background: linear-gradient(135deg, #FFE66D, #FFB347);
}

.team-emoji {
    font-size: 100px;
}

.team-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    color: #2C3E50;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-info {
    padding: 40px 30px 30px;
    text-align: center;
}

.team-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #2C3E50;
}

.team-title {
    color: #FF6B6B;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-info p {
    color: #666;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social span {
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-social span:hover {
    transform: scale(1.2);
}

/* Values Enhanced */
.values-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #1a1a2e 100%);
}

.values-enhanced .section-header h2,
.values-enhanced .section-header p {
    color: #fff;
}

.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.value-icon-large {
    font-size: 60px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-family: 'Fredoka One', cursive;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-item p {
    color: rgba(255,255,255,0.8);
}

/* Facility Showcase */
.facility-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.facility-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-icon {
    font-size: 40px;
}

.facility-text {
    font-weight: 700;
    color: #2C3E50;
}

/* ============================================
   GALLERY PAGE - ENHANCED
   ============================================ */

.gallery-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: 30px;
}

.gallery-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.gallery-card.large {
    grid-row: span 2;
}

.gallery-card.wide {
    grid-column: span 2;
}

.gallery-visual {
    height: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-emoji {
    font-size: 100px;
}

.gallery-card.large .gallery-emoji {
    font-size: 150px;
}

.gallery-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.gallery-tag {
    background: rgba(255,255,255,0.95);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.gallery-info {
    padding: 25px;
    background: #fff;
}

.gallery-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 8px;
}

.gallery-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.insta-header {
    text-align: center;
    margin-bottom: 50px;
}

.insta-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.insta-header h2 {
    font-family: 'Fredoka One', cursive;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.insta-handle {
    font-size: 1.5rem;
    color: #FFE66D;
    font-weight: 700;
}

.insta-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.insta-post {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.insta-placeholder {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e0e0e0);
}

.insta-likes {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ============================================
   CONTACT PAGE - ENHANCED
   ============================================ */

.contact-showcase {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contact Info Panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.contact-card-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

.contact-card-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.contact-link {
    color: #FF6B6B;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Hours Card */
.hours-card {
    background: linear-gradient(135deg, #2C3E50, #1a1a2e);
    border-radius: 25px;
    padding: 35px;
    color: #fff;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hours-icon {
    font-size: 40px;
}

.hours-header h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.time {
    color: #FFE66D;
    font-weight: 700;
}

/* Contact Form Panel */
.contact-form-panel {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.form-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.half {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s ease;
}

.textarea-wrapper .input-icon {
    top: 25px;
    transform: none;
}

.input-wrapper textarea {
    padding-top: 20px;
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: #FF6B6B;
    outline: none;
}

.btn-submit-large {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon {
    font-size: 1.3rem;
}

/* Map Showcase */
.map-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #1a1a2e 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.map-header h2 {
    font-family: 'Fredoka One', cursive;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.map-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-visual {
    background: #fff;
    border-radius: 30px;
    padding: 80px;
    text-align: center;
}

.map-emoji {
    font-size: 100px;
    display: block;
    margin-bottom: 20px;
}

.map-visual > p {
    font-size: 1.3rem;
    color: #2C3E50;
    font-weight: 700;
}

.map-address {
    color: #666;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .service-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .service-box:nth-child(even) {
        direction: ltr;
    }
    
    .big-emoji {
        font-size: 120px;
    }
    
    .service-content h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .about-story-box {
        grid-template-columns: 1fr;
    }
    
    .story-emoji-main {
        font-size: 150px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-card.wide,
    .gallery-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}
