/* Reset and Base Styles */

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

:root {
    --primary: #00abba;
    --secondary: #333333;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --light-primary: #E0F7FA;
    --beige: #F8F6F0;
    --dark-gray: #333333;
    --gold: #FFD700;
    --navy: #333333;
    --light-gold: #FFC107;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --primary-gradient: linear-gradient(135deg, #00abba, #00c4d6);
    --secondary-gradient: linear-gradient(135deg, #333333, #2C2C2C);
    --green-bg: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFC107);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}


/* Social Sidebar */

.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
    color: var(--dark-gray);
}

.social-icon:hover {
    transform: scale(1.15);
    box-shadow: 0 5px 15px rgba(0, 171, 186, 0.3);
}

.social-icon.instagram {
    color: #E4405F;
}

.social-icon.instagram:hover {
    background: rgba(228, 64, 95, 0.1);
}

.social-icon.facebook {
    color: #1877F2;
}

.social-icon.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
}

.social-icon.google {
    color: #4285F4;
}

.social-icon.google:hover {
    background: rgba(66, 133, 244, 0.1);
}

.social-icon.whatsapp {
    color: #25D366;
}

.social-icon.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

@media (max-width: 768px) {
    .social-sidebar {
        left: 10px;
        gap: 10px;
        padding: 15px 8px;
    }
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

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

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


/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary);
    font-size: 28px;
}

.nav-logo img {
    height: 48px;
    width: auto;
    display: block;
    background: transparent;
}

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

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

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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


/* Section 1: Contact Hero */

.contact-hero-section {
    min-height: 100vh;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--secondary);
    animation: fadeDown 1s ease;
}

.gold-underline {
    width: 100px;
    height: 4px;
    background: var(--primary);
    margin: 30px 0;
    animation: expandWidth 1.5s ease 0.5s both;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    animation: slideFromLeft 1s ease 0.4s both;
}

.hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    animation: slideFromLeft 1s ease 0.6s both;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    animation: fadeUp 1s ease 0.8s both;
}

.btn-gold {
    background: var(--primary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.3);
    background: var(--secondary);
    color: var(--white);
}

.btn-navy {
    background: transparent;
    color: var(--secondary);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g fill="%23D4AF37" opacity="0.3"><circle cx="20" cy="25" r="1.5"><animate attributeName="cy" values="25;15;25" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="35" r="1"><animate attributeName="cy" values="35;25;35" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="2"><animate attributeName="cy" values="70;60;70" dur="5s" repeatCount="indefinite"/></circle><circle cx="30" cy="60" r="1.2"><animate attributeName="cy" values="60;50;60" dur="3.5s" repeatCount="indefinite"/></circle></g></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}


/* Section 2: Video Message */

.video-message-section {
    padding: 100px 0;
    background: var(--secondary-gradient);
    color: var(--white);
    text-align: center;
}

.video-message-section h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 50px;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto 30px;
    border: 4px solid var(--gold);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    animation: fadeUp 1s ease;
    transition: all 0.3s ease;
}

.video-container:hover {
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
    border-color: var(--light-gold);
    animation: shimmer 2s ease infinite;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    font-style: italic;
    color: var(--light-gold);
    margin-bottom: 20px;
}

.video-description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}


/* Section 3: Contact Form */

.contact-form-section {
    padding: 100px 0;
    background: var(--light-primary);
}

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

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    animation: fadeInLeft 1s ease;
}

.form-card h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #cdbb7d;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
}

.file-upload-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.file-upload-group input[type="file"] {
    display: none;
}

.file-label {
    padding: 12px 20px;
    background: var(--light-gray);
    border: 2px dashed #cdbb7d;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--dark-gray);
}

.file-label:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* Clinic Info Card */

.info-card {
    background: var(--secondary);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    animation: fadeInRight 1s ease;
}

.info-item {
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

.info-item h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--white);
    line-height: 1.6;
}


/* Section 4: Branch Locator */

.branch-locator-section {
    padding: 100px 0;
    background: var(--white);
}

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

.section-header h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.branch-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    animation: slideUpSequential 0.8s ease;
    display: flex;
    flex-direction: column;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 188, 156, 0.2);
}

.branch-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.branch-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.branch-content h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-address {
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.whatsapp-btn {
    display: block;
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.map-container {
    text-align: center;
    animation: fadeIn 1s ease;
}

.map-placeholder {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}


/* Section 5: Why Contact Us */

.why-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #faf8f2 0%, #f8f6f0 100%);
}

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

.why-contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
    animation: floatUp 0.8s ease;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.why-contact-card h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.why-contact-card p {
    color: #666;
    line-height: 1.6;
}


/* Section 6: Patient Experience Video */

.patient-experience-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.patient-experience-section .video-container {
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid var(--gold);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: zoomIn 1s ease;
}


/* Section 7: FAQ */

.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--primary);
    animation: fadeInUp 0.8s ease;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.8;
}


/* Section 8: Final CTA */

.final-cta-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    text-align: center;
    color: var(--white);
    border-radius: 0 0 50px 50px;
}

.final-cta-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-appointment {
    background: var(--white);
    color: var(--secondary);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-appointment:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


/* Footer */

.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}


/* Animations */

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

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

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes shimmer {
    0% {
        border-color: var(--gold);
    }
    50% {
        border-color: var(--light-gold);
        box-shadow: 0 25px 50px rgba(212, 175, 55, 0.5);
    }
    100% {
        border-color: var(--gold);
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .hero-container,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
        font-size: 36px;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .final-cta-section h2 {
        font-size: 36px;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
    }
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--secondary);
        transition: all 0.3s ease;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu li {
        margin: 15px 0;
    }
    .nav-cta {
        display: none;
    }
    .branches-grid {
        grid-template-columns: 1fr;
    }
    .why-contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .file-upload-group {
        grid-template-columns: 1fr;
    }
    .form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .final-cta-section h2 {
        font-size: 32px;
    }
    .form-card h2 {
        font-size: 28px;
    }
}