/* 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;
    --dark-gray: #333333;
    --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%);
}

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: About Hero */

.about-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: fadeInUp 1s ease;
}

.gold-divider {
    width: 80px;
    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;
    animation: fadeInUp 1s ease 0.4s both;
}

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

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

.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"><circle cx="20" cy="20" r="2" fill="%23D4AF37" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%23D4AF37" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/></circle></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
}


/* Section 2: Our Story */

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

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

.story-content h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 30px;
    animation: fadeInRight 1s ease;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
    animation: fadeInRight 1s ease;
}

.story-image {
    animation: fadeInLeft 1s ease;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}


/* Section 3: Video Section 1 */

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

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

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

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

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

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


/* Section 4: Vision & Values */

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

.vision-content {
    text-align: center;
    margin-bottom: 60px;
}

.vision-content h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 20px;
}

.vision-content p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.values-grid h3 {
    text-align: center;
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 50px;
}

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

.value-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.4s ease;
    animation: bounceIn 0.8s ease;
    transform-style: preserve-3d;
}

.value-card:hover {
    transform: translateY(-15px) rotateZ(2deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(26, 188, 156, 0.25);
}

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

.value-card h4 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 15px;
}

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


/* Section 5: Doctors */

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

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

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

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.doctor-card {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--secondary);
    transition: all 0.4s ease;
    animation: slideUp 0.8s ease;
    transform-style: preserve-3d;
}

.doctor-card:hover {
    transform: translateY(-15px) rotateY(3deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(26, 188, 156, 0.3);
    border-color: var(--primary);
}

.doctor-image img {
    width: 180px;
    height: 240px;
    object-fit: cover;
}

.doctor-info {
    padding: 30px;
    flex: 1;
}

.doctor-info h3 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 5px;
}

.doctor-info h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.doctor-info ul {
    list-style: none;
}

.doctor-info li {
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.doctor-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


/* Section 6: Video Section 2 */

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

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

.video-section-2 .video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInLeft 1s ease;
}

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

.video-content {
    animation: fadeInRight 1s ease;
}

.video-content h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 20px;
}

.gold-accent-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px 0 30px 0;
}

.video-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.video-content .video-caption {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}


/* Section 7: Technology */

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

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

.tech-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--primary);
    transition: all 0.4s ease;
    animation: slideUp 0.8s ease;
    transform-style: preserve-3d;
}

.tech-card:hover {
    transform: translateY(-15px) rotateY(-5deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(26, 188, 156, 0.3);
}

.tech-card img {
    transition: transform 0.4s ease;
}

.tech-card:hover img {
    transform: scale(1.1);
}

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

.tech-card h3 {
    font-size: 22px;
    color: var(--navy);
    padding: 20px 25px 10px;
}

.tech-card p {
    color: #666;
    padding: 0 25px 25px;
    line-height: 1.6;
}


/* Section 8: Client Reviews */

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

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center;
}

.client-reviews-section .video-container {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.client-reviews-section video {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 171, 186, 0.2);
    transition: all 0.3s ease;
}

.client-reviews-section video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 171, 186, 0.3);
}

.client-reviews-section .video-caption {
    margin-top: 15px;
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .client-reviews-section video {
        width: 280px !important;
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .client-reviews-section video {
        width: 250px !important;
        height: 350px !important;
    }
}

/* Section 9: Branches */

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

.branches-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 60px;
}

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

.branch-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--primary);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
}

.branch-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(26, 188, 156, 0.3);
}

.branch-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.branch-card p {
    color: #666;
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-contact {
    margin-top: auto;
}

.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;
    width: fit-content;
    margin: 0 auto;
}

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


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

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

.contact-cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
}

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

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

/* Section 10: Final Message */

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

.final-message-section h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--white);
}

.final-message-section p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.btn-consultation:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}


/* 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 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 expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

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

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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


/* Responsive Design */

@media (max-width: 768px) {
    .hero-container,
    .story-grid,
    .video-split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
        font-size: 36px;
    }
    .section-header h2,
    .vision-content h2,
    .testimonials-section h2,
    .branches-section h2 {
        font-size: 32px;
    }
    .final-message-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;
    }
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    .doctor-card {
        flex-direction: column;
    }
    .doctor-image img {
        width: 100%;
        height: 250px;
    }
    .hero-image img {
        height: 300px;
    }
    .story-image img {
        height: 280px;
    }
    .tech-card img {
        height: 180px;
    }
    .technology-grid,
    .values-cards {
        grid-template-columns: 1fr;
    }
}

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