/* Aura Dental Custom Premium CSS Design System */

:root {
    /* Color Palette */
    --primary: #0e86d4;
    --primary-hover: #055c9d;
    --primary-light: rgba(14, 134, 212, 0.08);
    --secondary: #68b0ab;
    --dark: #0f172a;
    --dark-blue: #0b132b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --gold: #c5a880;
    --gold-dark: #a3845c;
    --border: #e2e8f0;
    
    /* Text Colors */
    --text-main: #334155;
    --text-muted: #64748b;
    
    /* Typography */
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadow */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(14, 134, 212, 0.12);
    --shadow-premium: 0 30px 60px -12px rgba(15, 23, 42, 0.08);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-round: 50px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Helper */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-title);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-round);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(14, 134, 212, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(14, 134, 212, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: var(--primary);
    font-family: var(--font-title);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 4px 0;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-hover);
}

.btn-text:hover i {
    transform: translateX(4px);
}

/* Announcement Demo Bar */
.demo-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #dc2626; /* Crimson Red */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    z-index: 1005;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2);
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 24px 0;
}


.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(14, 134, 212, 0.3);
}

.logo-icon i {
    width: 20px;
    height: 20px;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--dark);
}

.navbar:not(.scrolled) .logo-text {
    color: var(--white);
}

.logo-text span {
    color: var(--primary);
    font-weight: 400;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    background: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.navbar:not(.scrolled) .menu-toggle {
    color: var(--white);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 40px;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: calc(100vh - 40px);
    background-color: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.mobile-nav.open {
    right: 0;
}

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

.close-menu {
    background: none;
    color: var(--dark);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mob-link {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.mob-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

.mob-booking-btn {
    margin-top: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    padding-bottom: 80px;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(14, 134, 212, 0.15);
    border: 1px solid rgba(14, 134, 212, 0.25);
    color: #38bdf8;
    padding: 8px 16px;
    border-radius: var(--radius-round);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

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

/* Stats Cards in Hero */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateX(-8px);
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(14, 134, 212, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
}

.stat-icon i {
    width: 24px;
    height: 24px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Sections Base */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.text-left {
    text-align: left;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 134, 212, 0.2);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-round);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-content h3 {
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Technology Section */
.technology {
    background-color: var(--light-bg);
}

.tech-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.tech-image-side {
    position: relative;
}

.tech-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.tech-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--white);
}

.tech-badge i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.tech-badge h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.tech-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tech-content-side {
    display: flex;
    flex-direction: column;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.tech-features li {
    display: flex;
    gap: 20px;
}

.feat-icon {
    width: 52px;
    height: 52px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.feat-icon i {
    width: 24px;
    height: 24px;
}

.feat-text h5 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.feat-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Doctors Section */
.team {
    background-color: var(--white);
}

.team-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.team-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 520px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    padding: 32px;
    color: var(--white);
}

.team-card-overlay h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.team-card-overlay p {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.team-details-card {
    display: flex;
    flex-direction: column;
}

.team-card-title {
    font-size: 2rem;
    margin-bottom: 16px;
}

.team-card-desc {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.team-member-specs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spec-item {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.spec-name {
    display: block;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
}

.spec-title {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.spec-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Booking Section */
.booking {
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 134, 212, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.booking-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info-side {
    max-width: 500px;
}

.section-subtitle.white {
    color: var(--gold);
}

.section-title.white {
    color: var(--white);
}

.section-desc.white-op {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

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

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.c-icon i {
    width: 20px;
    height: 20px;
}

.c-info span {
    display: block;
}

.c-info span:first-child {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-info a, .c-info span:last-child {
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.c-info a:hover {
    color: var(--primary);
}

/* Form Styling */
.booking-form-side {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-premium);
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--light-bg);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.input-wrapper.align-start {
    align-items: flex-start;
}

.textarea-icon {
    top: 14px;
}

.input-wrapper textarea {
    padding-left: 48px;
    resize: none;
}

.form-group.margin-top {
    margin-top: 24px;
}

.margin-top {
    margin-top: 32px;
}

/* Error validation styling */
.form-group.has-error .input-wrapper input,
.form-group.has-error .input-wrapper select {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.error-msg {
    display: none;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
}

.form-group.has-error .error-msg {
    display: block;
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(14, 134, 212, 0.2);
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-trigger span {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
}

.faq-icon {
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #fafbfc;
}

.faq-content p {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active {
    border-color: rgba(14, 134, 212, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Footer Section */
.footer {
    background-color: var(--dark-blue);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer .logo-text {
    color: var(--white);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-hours h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: var(--font-title);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours li {
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}

.footer-hours li span {
    font-weight: 500;
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    background-color: rgba(10, 18, 42, 0.8);
    font-size: 0.85rem;
}

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

/* Modals Structure */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
}

.modal-wrapper {
    position: relative;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 680px;
    padding: 48px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
    z-index: 10;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-wrapper {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    background-color: #ef4444;
    color: var(--white);
    transform: rotate(90deg);
}

/* Dynamic Modal Content styling */
.m-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-round);
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--primary-light);
    color: var(--primary);
    margin-bottom: 16px;
}

.m-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.m-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1rem;
}

.m-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.m-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.m-bullets li i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.m-bullets li span {
    font-size: 0.95rem;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background-color: var(--dark-blue);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 4000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon i {
    width: 28px;
    height: 28px;
}

.toast-text h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.toast-text p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* CSS Entrance Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-slide-up-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

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

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

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

/* Slots Grid Selector */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.slot-chip {
    padding: 12px;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background-color: var(--light-bg);
    cursor: pointer;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    user-select: none;
}

.slot-chip:hover:not(.disabled) {
    border-color: var(--primary);
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.slot-chip.active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(14, 134, 212, 0.25);
}

.slot-chip.disabled {
    opacity: 0.5;
    background-color: #f1f5f9;
    border-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    text-decoration: line-through;
}


/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1 1 200px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-wrapper, .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .tech-image-side {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .team-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-image-card {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-hours {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .navbar:not(.scrolled) {
        padding: 16px 0;
    }
    
    .nav-menu, .nav-actions .btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .booking-form-side {
        padding: 28px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-wrapper {
        padding: 32px 24px;
    }
    
    .m-title {
        font-size: 1.4rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-hours {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
