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

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

/* Main Heading Section for SEO */
.main-heading-section {
    background: #ffffff;
    padding: 80px 0 20px 0;
    margin-top: 60px;
    text-align: center;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.main-subheading {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .main-subheading {
        font-size: 1rem;
        padding: 0 20px;
    }
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f0 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-brand:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.nav-brand i {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: #ffd700;
}

.brand-logo {
    height: 70px;
    width: auto;
    margin-right: 0.5rem;
    object-fit: contain;
}

.brand-text-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    background: #34656D;
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 101, 109, 0.1), transparent);
    transition: left 0.5s;
}

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

.nav-btn:hover {
    background: #2a5158;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nav-btn.active {
    background: white;
    color: #34656D;
    box-shadow: 0 6px 20px rgba(52, 101, 109, 0.3);
    transform: translateY(-2px);
}

.nav-btn.active:hover {
    background: white;
    color: #2a5158;
}

.nav-btn i {
    font-size: 1.1rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(52, 101, 109, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 1.1rem;
}

.social-icon:nth-child(1) {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-icon:nth-child(2) {
    background: #25D366;
    color: white;
}

.language-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-label {
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-switcher {
    display: flex;
    background: rgba(52, 101, 109, 0.08);
    border-radius: 25px;
    padding: 4px;
    gap: 4px;
    border: 2px solid rgba(52, 101, 109, 0.15);
}

.lang-btn {
    padding: 8px 14px;
    border-radius: 20px;
    border: none;
    background: transparent;
    color: #5a6c7d;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn .flag {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.lang-btn:hover .flag {
    transform: scale(1.2);
}

.lang-btn.active {
    background: #34656D;
    color: white;
    transform: scale(1.05);
}

.lang-btn.active .flag {
    transform: scale(1.1);
}

.lang-btn:hover {
    color: #34656D;
    background: rgba(52, 101, 109, 0.15);
}

/* Language switching animation */
.language-switching {
    opacity: 0.7;
    transform: scale(0.98);
    transition: all 0.3s ease;
}

.language-switched {
    animation: languageSwitch 0.5s ease-out;
}

@keyframes languageSwitch {
    0% {
        opacity: 0.5;
        transform: translateY(-5px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header .container {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0 15px;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .brand-logo {
        height: 45px;
        margin-right: 0.4rem;
    }
    
    .brand-text-img {
        height: 32px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .nav-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        border-radius: 10px;
        flex: 1;
        justify-content: center;
        max-width: 120px;
    }
    
    .nav-btn span {
        display: inline;
    }
    
    .nav-btn i {
        font-size: 1rem;
    }
    
    .header-actions {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .language-section {
        gap: 0.3rem;
    }
    
    .language-label {
        display: none;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Page Transitions */
.page {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
    margin-top: 80px;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map and Buttons Section */
.map-buttons-section {
    width: 100%;
    margin-top: 10px;
    padding: 40px 0;
    background: white;
}

.map-buttons-content {
    display: flex;
    gap: 40px;
    align-items: center;
    min-height: 400px;
}

.map-buttons-actions {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.map-buttons-map {
    flex: 0 0 70%;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.map-buttons-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

/* Map Buttons Styling */
.map-buttons-btn {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-buttons-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.map-buttons-btn:hover::before {
    left: 100%;
}

.map-buttons-btn:hover {
    transform: translateX(10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: inherit;
}

.whatsapp-btn {
    border-color: #25D366;
}

.whatsapp-btn .map-buttons-btn-title,
.whatsapp-btn .map-buttons-btn-subtitle {
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    transform: translateX(10px) scale(1.05);
}

.whatsapp-btn:hover .map-buttons-btn-title,
.whatsapp-btn:hover .map-buttons-btn-subtitle,
.whatsapp-btn:hover .map-buttons-btn-icon {
    color: white;
}

.appointment-btn {
    border-color: #667eea;
}

.appointment-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.appointment-btn:hover .map-buttons-btn-title,
.appointment-btn:hover .map-buttons-btn-subtitle,
.appointment-btn:hover .map-buttons-btn-icon {
    color: white;
}

.map-buttons-btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.whatsapp-btn .map-buttons-btn-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.appointment-btn .map-buttons-btn-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.map-buttons-btn-content {
    flex: 1;
    text-align: left;
}

.map-buttons-btn-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2d3436;
    transition: color 0.3s ease;
}

.map-buttons-btn-subtitle {
    display: block;
    font-size: 1rem;
    color: #636e72;
    transition: color 0.3s ease;
}

/* Banner Section */
.banner-section {
    width: 100%;
    overflow: visible;
    margin-top: 110px; /* Add margin to account for fixed header */
}

.page-banner {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 800px;
}





/* Map and Buttons Section Responsive */
@media (max-width: 1200px) {
    .map-buttons-content {
        gap: 30px;
    }
    
    .map-buttons-actions {
        flex: 0 0 35%;
    }
    
    .map-buttons-map {
        flex: 0 0 65%;
    }
    
    .map-buttons-map iframe {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .map-buttons-content {
        gap: 25px;
    }
    
    .map-buttons-actions {
        flex: 0 0 40%;
    }
    
    .map-buttons-map {
        flex: 0 0 60%;
    }
    
    .map-buttons-btn {
        padding: 1.2rem 1.5rem;
    }
    
    .map-buttons-btn-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .map-buttons-btn-title {
        font-size: 1rem;
    }
    
    .map-buttons-btn-subtitle {
        font-size: 0.85rem;
    }
    
    .map-buttons-map iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .map-buttons-section {
        margin-top: 10px;
        padding: 30px 0;
    }
    
    .map-buttons-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        min-height: auto;
    }
    
    .map-buttons-actions {
        flex: none;
        width: 100%;
        gap: 1.2rem;
        justify-content: center;
    }
    
    .map-buttons-map {
        flex: none;
        width: 100%;
        padding: 1rem;
    }
    
    .map-buttons-btn {
        padding: 1.3rem 1.6rem;
    }
    
    .map-buttons-btn-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .map-buttons-btn-title {
        font-size: 1.1rem;
    }
    
    .map-buttons-btn-subtitle {
        font-size: 0.9rem;
    }
    
    .map-buttons-map iframe {
        height: 300px;
    }
    
    .banner-section {
        margin-top: 120px; /* Increase margin for mobile due to larger header */
    }
}

@media (max-width: 480px) {
    .map-buttons-section {
        margin-top: 10px;
        padding: 20px 0;
    }
    
    .map-buttons-content {
        gap: 1.5rem;
        align-items: center;
    }
    
    .map-buttons-actions {
        gap: 1rem;
        justify-content: center;
    }
    
    .map-buttons-btn {
        padding: 1.1rem 1.3rem;
    }
    
    .map-buttons-btn-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .map-buttons-btn-title {
        font-size: 1rem;
    }
    
    .map-buttons-btn-subtitle {
        font-size: 0.85rem;
    }
    
    .map-buttons-map {
        padding: 0.8rem;
    }
    
    .map-buttons-map iframe {
        height: 250px;
    }
    
    .banner-section {
        margin-top: 130px; /* Further increase margin for very small screens */
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 101, 109, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 101, 109, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #34656D;
    border: 2px solid #34656D;
}

.btn-secondary:hover {
    background: #34656D;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 101, 109, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(52, 101, 109, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.feature-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.feature-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.feature-image i {
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 600;
}

.partners-carousel {
    overflow: hidden;
    width: 120%;
    margin-left: -10%;
    mask: linear-gradient(
        to right,
        transparent,
        white 15%,
        white 85%,
        transparent
    );
}

.partners-track {
    display: flex;
    animation: scroll 22s linear infinite;
    gap: 2rem;
    width: calc(200px * 12 + 2rem * 11);
}

.partner-slide {
    flex: 0 0 auto;
    min-width: 200px;
}

.partner-logo {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #14b8a6;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6 - 2rem * 6));
    }
}

/* Last Section */
.last-section {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-img-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    .features {
        padding: 50px 0;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .partners {
        padding: 50px 0;
    }
    
    .partners h2 {
        font-size: 2rem;
    }
    
    .partner-slide {
        min-width: 150px;
    }
    
    .partner-logo {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .header {
        padding: 0.4rem 0;
    }
    
    .header .container {
        gap: 0.5rem;
    }
    
    .brand-logo {
        height: 38px;
        margin-right: 0.3rem;
    }
    
    .brand-text-img {
        height: 28px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .nav-btn {
        padding: 9px 12px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .nav-btn span {
        font-size: 0.75rem;
    }
    
    .nav-btn i {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .lang-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .language-switcher {
        padding: 3px;
        gap: 3px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-img-placeholder {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    .features h2,
    .partners h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .partner-slide {
        min-width: 120px;
    }
}

/* Calendar Page Styles */
.calendar-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.calendar-hero .hero-text h1 {
    color: white;
}

.calendar-hero .hero-text p {
    color: rgba(255, 255, 255, 0.9);
}

.calendar-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-item i {
    color: #ffd700;
    font-size: 1.3rem;
    width: 24px;
}

.calendar-section {
    padding: 80px 0;
    background: white;
    margin-top: 110px;
}

.calendar-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calendar-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.calendar-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

/* Calendar Booking Actions */
.calendar-booking-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .calendar-booking-actions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.calendar-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

#calendar {
    max-width: 100%;
    margin: 0 auto;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.legend-color.available {
    background: #28a745;
}

.legend-color.booked {
    background: #dc3545;
}

.legend-color.today {
    background: #34656D;
}

.contact-section {
    padding: 80px 0;
    background: white;
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.contact-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-card p {
    font-size: 1.2rem;
    color: #34656D;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.contact-card span {
    color: #5a6c7d;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* FullCalendar Custom Styles */
.fc {
    font-family: 'Poppins', sans-serif;
}

.fc-header-toolbar {
    margin-bottom: 2rem;
}

.fc-button {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.fc-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(52, 101, 109, 0.4) !important;
}

.fc-button:focus {
    box-shadow: 0 0 0 3px rgba(52, 101, 109, 0.3) !important;
}

.fc-event {
    border-radius: 8px !important;
    border: none !important;
    padding: 4px 8px !important;
    font-weight: 500 !important;
}

/* Base event styles */
.fc-event-available {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.fc-event-booked {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Week view specific styles */
.fc-timegrid .fc-event-available {
    background: #28a745;
    border: 2px solid #1e7e34;
    opacity: 0.9;
}

.fc-timegrid .fc-event-booked {
    background: #dc3545;
    border: 2px solid #bd2130;
    opacity: 0.9;
}

.fc-timegrid .fc-event-available:hover {
    background: #218838;
    opacity: 1;
    transform: scale(1.02);
    cursor: pointer;
}

.fc-timegrid .fc-event-booked:hover {
    background: #c82333;
    opacity: 1;
    transform: scale(1.02);
    cursor: pointer;
}

/* Week view - hide times, show titles */
.fc-timegrid .fc-event .fc-event-time {
    display: none;
}

.fc-timegrid .fc-event .fc-event-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
}

.fc-timegrid .fc-event {
    min-height: 20px;
    border-radius: 4px;
    padding: 2px;
}



.fc-daygrid-day:hover {
    background-color: rgba(52, 101, 109, 0.05) !important;
}

.fc-today {
    background-color: rgba(40, 167, 69, 0.15) !important;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card.featured {
    border-color: #14b8a6;
    transform: scale(1.05);
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    color: white;
}

.pricing-card.featured::before {
    content: "En Popüler";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #2c3e50;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #34656D;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .price {
    color: white;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card.featured li {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-card p {
    color: #5a6c7d;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Quick Booking Section - Modern Design */
.quick-booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info {
    padding: 2rem;
}

.booking-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.booking-icon i {
    font-size: 2rem;
    color: white;
}

.booking-info h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.booking-info p {
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #495057;
    font-weight: 500;
}

.feature-item i {
    width: 20px;
    color: #34656D;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}

.booking-btn {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.booking-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;
}

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

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

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

.phone-btn {
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(52, 101, 109, 0.3);
}

.phone-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(52, 101, 109, 0.4);
    color: white;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.btn-icon i {
    font-size: 1.5rem;
}

.btn-content {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.booking-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

/* Responsive Calendar Styles */
@media (max-width: 768px) {
    .calendar-info {
        align-items: center;
        text-align: center;
    }
    
    .calendar-header h2 {
        font-size: 2rem;
    }
    
    .calendar-container {
        padding: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .legend-item {
        font-size: 0.9rem;
    }
    
    .fc-header-toolbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .calendar-section {
        padding: 40px 0;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .calendar-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Quick Booking Mobile */
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .booking-info {
        padding: 1rem;
    }
    
    .booking-info h3 {
        font-size: 2rem;
    }
    
    .booking-actions {
        padding: 1rem;
    }
    
    .booking-btn {
        padding: 1.2rem 1.5rem;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
    }
    
    .btn-icon i {
        font-size: 1.2rem;
    }
}

/* Service Image Styles */
.service-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

/* Mobile image adjustments - ensure no cropping */
@media (max-width: 768px) {
    .service-image-container {
        border-radius: 10px;
    }
    
    .service-image {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .service-image-container {
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    .service-image {
        border-radius: 8px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.page-transition {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
}

.page-transition.active {
    opacity: 1;
    transform: translateX(0);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #34656D 0%, #2a5158 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2a5158 0%, #34656D 100%);
}

/* ===================================
   Appointment Modal Styles
   =================================== */

.appointment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.appointment-modal.show {
    opacity: 1;
    visibility: visible;
}

.appointment-modal.show .modal-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 550px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-content {
    padding: 40px 30px 30px;
    overflow-y: auto;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-icon i {
    font-size: 2.5rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-body {
    animation: fadeInUp 0.6s ease;
}

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

.event-datetime {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 2px solid #e9ecef;
}

.datetime-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #495057;
    font-weight: 500;
}

.datetime-item:not(:last-child) {
    margin-bottom: 12px;
}

.datetime-item i {
    font-size: 1.2rem;
    color: #667eea;
    width: 24px;
    text-align: center;
}

.modal-message {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}

.modal-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #495057;
    font-size: 0.95rem;
}

.detail-item:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.detail-item i {
    color: #667eea;
    width: 20px;
    text-align: center;
}

.modal-footer {
    display: flex;
    gap: 12px;
    flex-direction: column;
    animation: fadeInUp 0.7s ease;
}

.modal-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.modal-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.modal-btn:hover::before {
    width: 300px;
    height: 300px;
}

.modal-btn i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.modal-btn span {
    position: relative;
    z-index: 1;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

.btn-call {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-close-action {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-close-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        max-width: 500px;
        border-radius: 20px;
    }
    
    .modal-content {
        padding: 35px 25px 25px;
    }
    
    .modal-icon {
        width: 70px;
        height: 70px;
    }
    
    .modal-icon i {
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-message {
        font-size: 1rem;
    }
    
    .event-datetime {
        padding: 16px;
    }
    
    .datetime-item {
        font-size: 0.9rem;
    }
    
    .modal-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 95%;
        border-radius: 16px;
    }
    
    .modal-content {
        padding: 30px 20px 20px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .modal-icon i {
        font-size: 1.8rem;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-message {
        font-size: 0.95rem;
    }
    
    .event-datetime {
        padding: 14px;
    }
    
    .datetime-item {
        font-size: 0.85rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    
    .modal-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .modal-btn i {
        font-size: 1rem;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .modal-container {
        background: #2d3436;
        color: #dfe6e9;
    }
    
    .modal-title {
        color: #ffffff;
    }
    
    .event-datetime {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .datetime-item,
    .detail-item,
    .modal-message {
        color: #b2bec3;
    }
    
    .modal-details {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .modal-close {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }
    
    .modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    display: none;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #636e72;
    margin-top: 20px;
}

.reviews-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    padding: 0 60px;
}

.reviews-carousel {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    border: 2px solid transparent;
    overflow: hidden;
}

.review-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

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

.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.review-arrow:hover {
    background: #667eea;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.review-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.review-prev {
    left: 0;
}

.review-next {
    right: 0;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-stars i {
    color: #ffd700;
    font-size: 1.1rem;
    animation: starPulse 2s ease-in-out infinite;
}

.review-stars i:nth-child(1) { animation-delay: 0s; }
.review-stars i:nth-child(2) { animation-delay: 0.1s; }
.review-stars i:nth-child(3) { animation-delay: 0.2s; }
.review-stars i:nth-child(4) { animation-delay: 0.3s; }
.review-stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.review-text {
    color: #2d3436;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f1f3f5;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: #2d3436;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-pet {
    color: #636e72;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-pet i {
    color: #667eea;
}

/* ============================================
   SUGGESTIONS FORM SECTION
   ============================================ */
.suggestions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.suggestions-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.suggestions-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.suggestions-section .section-header h2 {
    color: white;
}

.suggestions-section .section-header h2::after {
    background: white;
}

.suggestions-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.suggestions-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.suggestions-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: #2d3436;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit i {
    font-size: 1.2rem;
}

.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.15);
    color: #155724;
    border: 2px solid rgba(40, 167, 69, 0.3);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.15);
    color: #721c24;
    border: 2px solid rgba(220, 53, 69, 0.3);
}

.form-message::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.3rem;
}

.form-message.success::before {
    content: '\f058'; /* check-circle */
    color: #28a745;
}

.form-message.error::before {
    content: '\f06a'; /* exclamation-circle */
    color: #dc3545;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PRICING SECTION STYLES
   ============================================ */
.pricing-section {
    padding: 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #34656D;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: #34656D;
}



.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.pricing-icon i {
    font-size: 1.5rem;
    color: white;
}

.cat-package .pricing-icon {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
}

.dog-package .pricing-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
    gap: 6px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #718096;
}

.pricing-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pricing-features {
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    padding-left: 6px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 6px;
    margin: 0 -6px;
}

.pricing-features li i {
    color: #48bb78;
    font-size: 1rem;
    font-weight: 900;
    min-width: 14px;
}

.pricing-features li span {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

.pricing-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-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;
}

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

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: #20ba5a;
    text-decoration: none;
    color: white;
}

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

.pricing-btn i {
    font-size: 1.1rem;
}

/* Cat and Dog Package Specific Styles - All buttons now use WhatsApp green */
.cat-package .pricing-btn {
    background: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.cat-package .pricing-btn:hover {
    background: #20ba5a;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.dog-package .pricing-btn {
    background: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.dog-package .pricing-btn:hover {
    background: #20ba5a;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Dog Scissors Package Specific Styles */
.dog-scissors-package .pricing-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.dog-scissors-package .pricing-btn {
    background: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.dog-scissors-package .pricing-btn:hover {
    background: #20ba5a;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Weight Slider Styles */
.weight-slider-section {
    margin-top: 20px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.weight-display {
    text-align: center;
    margin-bottom: 15px;
}

.weight-value {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.weight-value:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.weight-slider-container {
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.weight-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #ff6b6b 0%, #ee5a24 100%);
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.weight-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.weight-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.weight-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.weight-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #718096;
    font-weight: 600;
}


/* Price animation */
.price-amount {
    transition: all 0.3s ease;
}

.price-changing {
    transform: scale(1.05);
    color: #667eea !important;
}

/* ============================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ============================================ */
@media (max-width: 768px) {
    .reviews-section,
    .suggestions-section,
    .pricing-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .pricing-icon {
        width: 55px;
        height: 55px;
    }
    
    .pricing-icon i {
        font-size: 1.4rem;
    }
    
    .reviews-carousel-wrapper {
        padding: 0 50px;
    }
    
    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 25px;
    }
    
    .review-arrow {
        width: 40px;
        height: 40px;
    }
    
    .suggestions-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1rem;
    }
    
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .pricing-section {
        padding: 35px 0;
    }
    
    .pricing-grid {
        gap: 20px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .weight-slider-container {
        padding: 12px;
    }
    
    .weight-slider {
        height: 6px;
    }
    
    .weight-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }
    
    .weight-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }
    
    
    .slider-labels {
        font-size: 0.75rem;
    }
    
    .weight-slider-section {
        margin-top: 15px;
    }
    
    .weight-display {
        margin-bottom: 12px;
    }
    
    .weight-value {
        padding: 6px 12px;
        font-size: 1rem;
        min-width: 50px;
    }
    
    .weight-slider-container {
        padding: 12px;
    }
    
    .pricing-card {
        padding: 20px 18px;
        border-radius: 18px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .price-currency {
        font-size: 1rem;
    }
    
    .pricing-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .pricing-icon i {
        font-size: 1.3rem;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .pricing-description {
        font-size: 0.9rem;
    }
    
    .pricing-features li {
        padding: 6px 0;
    }
    
    .pricing-features li span {
        font-size: 0.85rem;
    }
    
    .pricing-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    
    .reviews-carousel-wrapper {
        padding: 0 45px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .suggestions-form {
        padding: 25px 15px;
    }
    
}
