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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f9fafb;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* Utility Classes */
.text-accent {
    color: #0284c7;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1.873rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.23rem;
    }
}

.section-header p {
    font-size: 1.23rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background-color: #0284c7;
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0369a1;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border: 2px solid #0284c7;
    color: #0284c7;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s ease;
    background: white;
}

.btn-secondary:hover {
    background-color: #0284c7;
    color: white;
}

.btn-secondary.white-variant {
    border-color: white;
    color: white;
    background: transparent;
}

.btn-secondary.white-variant:hover {
    background-color: white;
    color: #0284c7;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background-color: white;
    color: #0284c7;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-white:hover {
    background-color: #f3f4f6;
}

.btn-arrow {
    margin-left: 0.3rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow,
.btn-white:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-icon {
    margin-right: 0.3rem;
}

/* Top Bar */
.top-bar {
    background-color: #0284c7;
    color: white;
    padding: 0.3rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.873rem;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hours {
    display: none;
}

@media (min-width: 768px) {
    .hours {
        display: block;
    }
}

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.73rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.23rem;
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.logo-text p {
    font-size: 0.873rem;
    color: #4b5563;
    line-height: 1;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 0.23rem;
}

.nav-link:hover {
    color: #0284c7;
}

.nav-link.active {
    color: #0284c7;
    border-bottom: 2px solid #0284c7;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.23rem;
}

.dropdown-arrow {
    font-size: 0.73rem;
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 16rem;
    background: white;
    border-radius: 0.3rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 0.3rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 50;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.73rem 1.3rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #eff6ff;
    color: #0284c7;
}

.book-btn {
    background-color: #0284c7;
    color: white;
    padding: 0.3rem 1.3rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.book-btn:hover {
    background-color: #0369a1;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    width: 1.3rem;
    height: 2px;
    background-color: #374151;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.3rem;
    height: 2px;
    background-color: #374151;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu-btn.active .hamburger {
    background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.3rem 0;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
}

.mobile-nav-link.active {
    color: #0284c7;
}

.mobile-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 0.3rem 0;
    font-weight: 500;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-arrow {
    font-size: 0.73rem;
    transition: transform 0.2s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1rem;
    margin-top: 0.23rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.23rem 0;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.873rem;
}

.mobile-dropdown-menu a:hover {
    color: #0284c7;
}

.mobile-book-btn {
    display: block;
    background-color: #0284c7;
    color: white;
    text-align: center;
    padding: 0.3rem;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.3rem;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.73rem;
    }
}

.hero-text p {
    font-size: 1.23rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(2, 132, 199, 0.2) 0%, transparent 100%);
    border-radius: 1rem;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: 1.3rem;
    border-radius: 0.73rem;
    transition: all 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: #eff6ff;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.feature-card h3 {
    font-size: 1.23rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.3rem;
}

.feature-card p {
    color: #4b5563;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 0.73rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.service-card img {
    width: 100%;
    height: 13rem;
    object-fit: cover;
}

.service-content {
    padding: 1.3rem;
}

.service-content h3 {
    font-size: 1.23rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.3rem;
}

.service-content p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-link {
    color: #0284c7;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.23rem;
}

.service-link:hover {
    color: #0369a1;
}

.link-arrow {
    transition: transform 0.2s ease;
}

.service-link:hover .link-arrow {
    transform: translateX(4px);
}

.services-cta {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: #f9fafb;
    padding: 1.3rem;
    border-radius: 0.73rem;
}

.stars {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-card p {
    color: #374151;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #111827;
}

/* CTA Section */
.cta {
    padding: 3rem 0;
    background-color: #0284c7;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta h2 {
    font-size: 1.873rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 2.23rem;
    }
}

.cta p {
    font-size: 1.23rem;
    color: #bae6fd;
    margin-bottom: 3rem;
    max-width: 33rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
}

.footer-content {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-size: 1.123rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.73rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.3rem;
    height: 2.3rem;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.footer-logo-text p {
    color: #9ca3af;
    font-size: 0.873rem;
    line-height: 1.2;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.23rem;
    transition: color 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #374151;
}

.social-link:hover {
    color: white;
}

.footer-links,
.footer-services {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-services li {
    color: #9ca3af;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.73rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.73rem;
}

.contact-icon {
    color: #38bdf8;
    font-size: 1.123rem;
    margin-top: 0.123rem;
}

.contact-detail p {
    color: #9ca3af;
    font-size: 0.873rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 0.3rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        gap: 0;
    }
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.873rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.3rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.873rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Page-specific styles for other pages */
.page-hero {
    background: linear-gradient(135deg, #e0f2fe 0%, #b2ebf2 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.3rem;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero h1 {
        font-size: 3.73rem;
    }
}

.page-hero p {
    font-size: 1.23rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Content sections */
.content-section {
    padding: 3rem 0;
}

.content-section.bg-white {
    background: white;
}

.content-section.bg-gray {
    background-color: #f9fafb;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.content-text h2 {
    font-size: 1.873rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.3rem;
}

@media (min-width: 768px) {
    .content-text h2 {
        font-size: 2.23rem;
    }
}

.content-text p {
    font-size: 1.123rem;
    color: #4b5563;
    margin-bottom: 1.3rem;
    line-height: 1.75;
}

.content-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Benefits/Features Lists */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.73rem;
}

.benefit-icon {
    color: #0284c7;
    font-size: 1.23rem;
    flex-shrink: 0;
}

.benefit-text {
    color: #374151;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background: white;
    padding: 1.3rem;
    border-radius: 0.73rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.info-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.info-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: #eff6ff;
    border-radius: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card h3 {
    font-size: 1.23rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.73rem;
}

.info-card p {
    color: #4b5563;
}

/* Form Styles */
.form-container {
    max-width: 64rem;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 1.873rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.form-header p {
    color: #4b5563;
}

.form-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.23rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.section-icon {
    font-size: 1.3rem;
    margin-right: 0.3rem;
    color: #0284c7;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.3rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.form-group label {
    font-size: 0.873rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.73rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.3rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #0284c7;
}

.form-group textarea {
    resize: none;
}

.submit-section {
    text-align: center;
    padding-top: 1.3rem;
}

.submit-message {
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.73rem;
    border-radius: 0.3rem;
    background-color: #fef2f2;
    color: #dc2626;
    display: none;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background-color: #0284c7;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 1.123rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.submit-btn:hover {
    background-color: #0369a1;
}

.submit-btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}

.submit-note {
    font-size: 0.873rem;
    color: #4b5563;
    margin-top: 1rem;
}

/* Loading state */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success message */
.success-message {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.3rem;
    }
}