/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Medical Premium Palette (Logo Matching) */
    --primary-color: #0F2C59;
    /* Dark Navy Blue from Logo */
    --secondary-color: #00D2D3;
    /* Bright Teal/Cyan from Logo Cross */
    --accent-color: #E0F7FA;
    /* Light Cyan Background */
    --text-color: #334155;
    /* Slate Gray for text */
    --light-color: #F8FAFC;
    /* Lightest Slate/White */
    --white: #FFFFFF;

    /* Functional Colors */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;

    /* Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(15, 44, 89, 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(15, 44, 89, 0.15);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-blur: blur(12px);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    /* Slightly wider for modern feel */
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    /* Changed to match Logo Text */
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 4.5rem;
    /* Larger, more dramatic */
    font-weight: 700;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 400;
}

.highlight {
    color: var(--secondary-color);
    font-style: italic;
    position: relative;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0f172a);
    color: var(--secondary-color);
    /* Gold text on Navy */
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(197, 160, 101, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.3);
    color: #fff;
    /* White on hover for contrast */
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.logo img {
    height: 55px;
    margin-right: 15px;
}

/* Optional Logo Text styling if needed */
/* .logo-text span { ... } */

.nav-menu {
    display: flex;
    gap: 40px;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.phone-link i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.phone-link:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: radial-gradient(circle at 90% 10%, rgba(224, 242, 241, 0.4) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(circle at 10% 90%, rgba(197, 160, 101, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    overflow: visible;
    /* Ensure shadows don't get cut */
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 90%;
    color: var(--text-color);
    border-left: 3px solid var(--secondary-color);
    padding-left: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 4rem;
}

.hero-features {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.feature i {
    color: var(--secondary-color);
    background-color: transparent;
    border: 1px solid rgba(197, 160, 101, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.feature:hover i {
    background-color: var(--secondary-color);
    color: white;
    transform: rotate(30deg);
}

.hero-image {
    position: relative;
}

/* Abstract Background Shapes behind image */
.hero-image::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), #fff);
    border-radius: 40px 0 40px 0;
    z-index: -1;
    opacity: 0.5;
}

.image-frame {
    position: relative;
    border-radius: 0 60px 0 60px;
    /* Unique asymmetrical shape */
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 8px solid rgba(255, 255, 255, 0.8);
}

.image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.image-frame:hover img {
    transform: scale(1.03);
}

/* Section Components */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-top: 20px;
}

/* About Section */
.about {
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    flex: 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Services Section */
.services {
    background-color: var(--light-color);
    position: relative;
    padding-bottom: 150px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-premium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03), rgba(255, 255, 255, 0));
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

/* Team Section */
.team {
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-premium);
}

.member-image {
    height: 400px;
    /* Taller, more elegant */
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.member-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .member-image::after {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 35px;
    text-align: center;
    background: white;
    position: relative;
}

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.member-desc {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: var(--text-color);
    line-height: 1.8;
}

.member-qualifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.qualification {
    background: rgba(15, 23, 42, 0.03);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

/* Certificates Section */
.certificates {
    background-color: white;
    padding-top: 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.certificate-card {
    border: 1px solid var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.certificate-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.certificate-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.certificate-year {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(99, 214, 209, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Booking Section - Glassmorphism Redesign */
.booking {
    padding: 120px 0;
    /* Premium Background Image with Overlay */
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.8)),
        url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.booking .section-title {
    color: white;
}

.booking .section-title::after {
    background: var(--secondary-color);
    /* Bright teal underline for contrast */
}

.booking .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Glassmorphism Container */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}

.booking-info {
    padding: 80px 60px;
    background: rgba(15, 23, 42, 0.6);
    /* Darker overlay for text contrast */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.booking-info h3 {
    color: white;
    font-size: 2.5rem;
    /* Larger and more elegant */
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.booking-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

.booking-features {
    margin-top: 50px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.booking-feature i {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    /* Rounded for softer feel */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.booking-feature:hover i {
    background: var(--secondary-color);
    color: white;
    transform: rotateY(180deg);
}

.booking-feature h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.booking-feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.booking-form-container {
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.02);
}

.booking-form h3 {
    color: white;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

/* Glassy Inputs */
.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle fill */
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    font-size: 1rem;
    color: white;
    backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.form-group select {
    color: white;
    cursor: pointer;
}

.form-group select option {
    background: #1e293b;
    /* Good contrast for dropdowns */
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(0, 210, 211, 0.2);
    transform: translateY(-2px);
}

.form-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary-color);
    /* Highlight color */
    margin-bottom: 10px;
    font-weight: 600;
    display: block;
    margin-left: 5px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 5px;
}

.form-checkbox a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--secondary-color);
    transition: var(--transition);
}

.form-checkbox a:hover {
    color: var(--secondary-color);
}

/* Premium Button */
.booking-form .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #00a8a9);
    color: white;
    border: none;
    font-size: 1.1rem;
    padding: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 210, 211, 0.3);
    border-radius: 50px;
}

.booking-form .btn-primary:hover {
    background: linear-gradient(135deg, #fff, #f0fdfa);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background-color: var(--light-color);
    padding: 120px 0;
}

.contact-container {
    display: flex;
    gap: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background: white;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details {
    margin: 50px 0;
}

.contact-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(197, 160, 101, 0.1);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--secondary-color);
    color: white;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.hours-grid {
    margin-top: 20px;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-day:last-child {
    border-bottom: none;
}

.map-container {
    flex: 1;
    background-image: url('https://images.unsplash.com/photo-1577415124269-fc1140a69e91?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
    width: 100%;
}

.transport-options {
    margin-top: 20px;
}

.transport {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.transport i {
    color: var(--secondary-color);
    width: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 30px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent for footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 210, 211, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Brand Column */
.brand-column .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    margin-right: 15px;
    margin-bottom: 0;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.footer-logo p {
    color: var(--secondary-color);
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Links Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links-list a::before {
    content: '\f054';
    /* FontAwesome Chevron Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
}

/* Social Icons in Brand Column */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 210, 211, 0.3);
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 0;
    border-top: none;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.modal-header {
    background: var(--secondary-color);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    .navbar .nav-menu,
    .navbar .phone-link {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 50px;
    }

    .hero-title br {
        display: none;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .about-content {
        flex-direction: column;
    }

    .booking-container {
        flex-direction: column;
        gap: 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}