/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #22becf;
    --secondary-color: #23a3e0;
    --accent-color: #5be6ab;
    --highlight-color: #ff6b6b;
    --text-primary: #1a2533;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #e0f8fd;
    --pink-primary: #ec4899;
    --green-primary: #16a34a;
    --border-light: #e2e8f0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Fixed Side Booking Button */
.fixed-booking-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: var(--pink-primary);
    color: white;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: -2px 0 10px rgba(236, 72, 153, 0.3);
}

.fixed-booking-btn:hover {
    background: #be185d;
    transform: translateY(-50%) translateX(-5px);
}

.booking-btn-content {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.booking-btn-content i {
    font-size: 1.2rem;
    transform: rotate(90deg);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.logo-section {
    flex: 0 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 50px;
    height: 50px;
    
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}
.brand-namex {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    color: white;
}

.brand-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: var(--bg-accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 0 0 auto;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-info i {
    color: var(--primary-color);
    
}

.cta-btn {
    background: var(--pink-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cta-btn:hover {
    background: #be185d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f8fd 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -100px;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight-2 {
    color: var(--pink-primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #1ea5b4;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.image-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.patient-card {
    margin-bottom: 2rem;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.patient-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
}

.patient-avatar::after {
    content: 'DS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.patient-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.patient-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating span {
    font-weight: 600;
    color: var(--text-primary);
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.floating-elements {
    position: relative;
}

.element {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: -1rem;
    right: -1rem;
    color: var(--primary-color);
    animation-delay: 1s;
}

.element-2 {
    bottom: -1rem;
    left: -1rem;
    color: var(--pink-primary);
    animation-delay: 2s;
}

.element i {
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--bg-accent);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.service-category {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: fit-content;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.main-category {
    background: var(--text-primary);
    color: white;
}

.category-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-list {
    padding: 0 1.5rem 1.5rem;
}

.service-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-item:last-child {
    border-bottom: none;
}

.category-image {
    height: 150px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 1.5rem;
}

.category-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.category-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.why-us-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.why-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.highlight-text {
    background: var(--bg-accent);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
    color: var(--text-primary) !important;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    margin: 2rem 0 !important;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.trust-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-header p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--bg-accent);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 600;
    color: var(--text-primary);
}

.opening-hours {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.opening-hours h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.hours-item span:first-child {
    color: var(--text-secondary);
}

.hours-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.team-preview h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.team-avatars {
    display: flex;
    gap: 0.5rem;
}

.team-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: var(--shadow-light);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-container {
    background: var(--bg-secondary);
    padding: 2rem;
    margin-top: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.contact-form-container h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(34, 190, 207, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
}

.contact-info i {
    color: var(--primary-color);
    width: 50px;
}

.contact-infox p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
}

.contact-infox i {
    color: var(--primary-color);
    
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show,
body.modal-open .modal-overlay {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(50px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.modal-open .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.booking-modal-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-modal-form label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.booking-modal-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 1.5rem;
    z-index: 10001;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-color);
}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-show {
    transform: translateX(0);
}

.notification-exit {
    transform: translateX(100%);
    opacity: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-content i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.notification-success .notification-content i {
    color: #10b981;
}

.notification-error .notification-content i {
    color: #ef4444;
}

.notification-content span {
    color: var(--text-primary);
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    border-radius: 4px;
    transition: var(--transition);
}

.notification-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Enhanced Header Scroll Effects */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.hidden {
    transform: translateY(-100%);
}

/* Body scroll lock for modal */
body.modal-open,
body.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .main-category {
        grid-column: 1 / -1;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Enhanced Mobile Menu */
    .nav-links.active {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 2rem;
        z-index: 998;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active .nav-menu {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .nav-links.active .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        text-align: center;
        width: 100%;
        border-radius: 12px;
    }

    .nav-links.active .nav-actions {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-links.active .contact-info {
        justify-content: center;
        font-size: 1rem;
        padding: 1rem;
        background: var(--bg-secondary);
        border-radius: 12px;
        width: 100%;
    }

    .nav-links.active .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Mobile Menu Toggle Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .why-us-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .fixed-booking-btn {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        top: auto;
        transform: none;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        border-radius: 50px;
    }
    
    .booking-btn-content {
        flex-direction: row;
        padding: 1rem 1.5rem;
    }
    
    .booking-btn-content i {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Very Small Screens (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .modal-content {
        margin: 1rem;
        border-radius: 16px;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-in {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-in.from-left {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-in.from-right {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-in.fade {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Enhanced Focus States */
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
/* About Us Hero Banner */
.about-hero {
    background: linear-gradient(110deg, #f8fafc 35%, #e0f8fd 100%);
    padding: 9rem 0 3rem 0;
}
.about-hero .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
@media (max-width: 900px) {
    .about-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}
.about-hero .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2533;
    margin-bottom: 1.2rem;
}
.about-hero .hero-description {
    color: #64748b;
    font-size: 1.14rem;
    margin-bottom: 2rem;
}

.about-hero .image-card {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 29px rgba(34,190,207,0.08);
    padding: 1.5rem;
    display: inline-block;
    min-width: 240px;
}

/* Our Philosophy Section */
.philosophy-section {
    background: #f8fafc;
    padding: 3rem 0;
}
.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}
@media (max-width: 900px) {
    .philosophy-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}
.philosophy-section h2 {
    color: #22becf;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.philosophy-section p {
    color: #1a2533;
    font-size: 1.04rem;
    margin-bottom: 1.1rem;
}
.philosophy-section ul {
    margin-left: 1rem;
    color: #22becf;
    font-weight: 500;
    line-height: 2;
    list-style: disc;
}

/* Credentials Grid */
.credentials-section {
    background: #f8fafc;
    padding: 3rem 0;
}
.credentials-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.credentials-section .service-category {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(34,190,207,0.05);
    transition: 0.3s;
    height: fit-content;
}
.credentials-section .service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(34,190,207,0.12);
}
.credentials-section .category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}
.credentials-section .category-header h3 {
    font-size: 1.07rem;
    color: #222;
}
.credentials-section .category-icon {
    width: 38px;
    height: 38px;
    background: #e0f8fd;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22becf;
    font-size: 1.3rem;
}
.credentials-section .category-content {
    padding: 1rem 1.2rem;
    font-size: 0.98rem;
    color: #64748b;
}

/* Team Gallery */
.team-gallery-section {
    background: #fff;
    padding: 2.5rem 0;
}
.team-gallery-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.7rem;
    flex-wrap: wrap;
}
.team-gallery-row .team-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e0f8fd;
    box-shadow: 0 2px 8px rgba(34,190,207,0.09);
    background: #e0f8fd;
}
.team-gallery-row .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8fafc;
    padding: 3rem 0;
}
.testimonials-section .trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.testimonials-section .trust-item {
    background: white;
    padding: 2.2rem;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(34,190,207,0.07);
    transition: 0.3s;
}
.testimonials-section .trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 29px rgba(34,190,207,0.10);
}
.testimonials-section .trust-icon {
    background: #e0f8fd;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    color: #22becf;
    font-size: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* CTA Banner */
.about-cta-banner {
    background: linear-gradient(90deg,#22becf 40%,#fff 100%);
    padding: 2.5rem 0;
    margin-top: 2rem;
    color: #fff;
}
.about-cta-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-cta-banner h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: .5rem;
}
.about-cta-banner p {
    color: #e0f8fd;
    margin-top: 0.4rem;
}
.about-cta-banner .btn {
    font-size: 1.1rem;
    margin-left: 1.2rem;
}
@media (max-width: 900px) {
    .about-cta-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    .about-cta-banner .btn {
        margin: 0;
    }
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem 2.2rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2.5rem;
  padding-bottom: 2rem;
}

.service-category {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(34,190,207,0.07);
  padding: 2rem 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-category:hover {
  box-shadow: 0 10px 28px rgba(34,190,207,0.13);
  transform: translateY(-5px) scale(1.02);
}



.service-card {
  background: #fff;
  padding: 2.2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid #e0f8fd;
  box-shadow: 0 4px 16px rgba(34,190,207,0.07);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
}

.service-card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 10px 28px rgba(34,190,207,0.13);
}

.service-icon {
  font-size: 2.5rem;
  color: #22becf;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #00796b;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.service-card p {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.why-us-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.why-us-item {
  background: #e0f8fd;
  color: #0891b2;
  font-weight: 600;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(34,190,207,0.07);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .service-card {
    min-height: 260px;
    padding: 1.3rem 0.8rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    min-height: 180px;
    padding: 1rem 0.5rem;
  }
  .why-us-list {
    gap: 0.8rem;
  }
}
.phone-link {
  color: inherit;
  text-decoration: none;
  font: inherit;
}
.phone-link:hover {
  text-decoration: underline;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #e0f8fd;
  font-size: 1rem;
}

.footer-contact-item i {
  font-size: 1.3rem;
  color: #22becf;
}

@media (max-width: 600px) {
  .footer-contact-list {
    gap: 0.5rem;
  }
  .footer-contact-item {
    font-size: 0.95rem;
  }
}
/* Uniform accreditations grid styling */
.accreditations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2.5rem;
}

.accreditation-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(34,190,207,0.07);
  padding: 2rem 1.5rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.accreditation-card:hover {
  box-shadow: 0 10px 28px rgba(34,190,207,0.13);
  transform: translateY(-5px) scale(1.02);
}

.accreditation-icon {
  font-size: 2.5rem;
  color: #22becf;
  margin-bottom: 1.2rem;
}

.accreditation-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.7rem;
}

.accreditation-desc {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .accreditations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .accreditation-card {
    min-height: 180px;
    padding: 1.3rem 0.8rem;
  }
}

@media (max-width: 600px) {
  .accreditations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .accreditation-card {
    min-height: 140px;
    padding: 1rem 0.5rem;
  }
}
.philosophy-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.philosophy-image img {
  width: 350px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: block;
  margin: 0 auto;
}

.philosophy-text {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.philosophy-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: left;
}

.philosophy-text p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.philosophy-text ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #22becf;
  font-weight: 500;
  line-height: 2;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .philosophy-flex {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .philosophy-text h2,
  .philosophy-text {
    text-align: center;
  }
  .philosophy-text ul {
    padding-left: 0;
    text-align: left;
    display: inline-block;
  }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 1.2rem 2rem 1.2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 0 0 24px 24px;
    min-height: 60vh;
    display: none;
    transition: all 0.3s;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
  }
  .nav-actions {
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
    width: 100%;
    align-items: center;
  }
}