/* ==========================================================================
   Sulphur Springs Dental - Main Stylesheet
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #6b21a8;
    --primary-dark: #581c87;
    --primary-light: #9333ea;
    --secondary-color: #a855f7;
    --accent-color: #d946ef;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--text-white);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 15px;
    z-index: 10000;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-google {
    background-color: #4285f4;
    color: var(--text-white);
}

.btn-google:hover {
    background-color: #357abd;
    color: var(--text-white);
}

.btn-google i {
    margin-right: 10px;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-link {
    color: var(--text-white);
    font-weight: 500;
}

.phone-link:hover {
    color: var(--accent-color);
}

.phone-link i {
    margin-right: 8px;
}

.book-btn {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
}

.book-btn:hover {
    background-color: #219a52;
    color: var(--text-white);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background-color: var(--text-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
}

.nav-menu > li > a i {
    font-size: 0.7rem;
    transition: var(--transition);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--text-white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.85) 0%, rgba(41, 128, 185, 0.7) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ==========================================================================
   Quick Links Section
   ========================================================================== */
.quick-links {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-link-card {
    background-color: var(--text-white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-link-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ==========================================================================
   Doctors Section
   ========================================================================== */
.doctors-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.doctor-card {
    background-color: var(--text-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.doctor-image {
    height: 300px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

.doctor-info {
    padding: 25px;
    text-align: center;
}

.doctor-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.doctor-info p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content .contact-info {
    background-color: var(--text-white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

/* ==========================================================================
   Cosmetic Section
   ========================================================================== */
.cosmetic-section {
    padding: 80px 0;
}

.cosmetic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cosmetic-content h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.cosmetic-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.treatment-list {
    margin-top: 20px;
}

.treatment-list li {
    margin-bottom: 12px;
}

.treatment-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.treatment-list li a i {
    color: var(--primary-color);
}

.treatment-list li a:hover {
    color: var(--primary-color);
}

.cosmetic-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Implants Section
   ========================================================================== */
.implants-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
}

.implants-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.implants-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.implants-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.implants-content a {
    color: var(--accent-color);
}

.implants-content a:hover {
    color: #f1c40f;
}

/* ==========================================================================
   Review Section
   ========================================================================== */
.review-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.review-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.review-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* ==========================================================================
   Service Areas
   ========================================================================== */
.service-areas {
    padding: 30px 0;
    background-color: var(--text-white);
    border-top: 1px solid var(--border-color);
}

.areas-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo .logo-text {
    color: var(--text-white);
    font-size: 1.3rem;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-white);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Page Headers
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--text-white);
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background-color: var(--bg-light);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--text-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background-color: var(--text-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-info-box h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-info-box p {
    color: var(--text-dark);
    line-height: 1.8;
}

.office-hours table {
    width: 100%;
    border-collapse: collapse;
}

.office-hours td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.office-hours td:first-child {
    font-weight: 600;
}

.contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Contact Form */
.contact-form {
    background-color: var(--text-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.doctor-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.doctor-profile:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.doctor-profile-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.doctor-profile-image img {
    width: 100%;
    height: auto;
}

.doctor-profile-content h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.doctor-profile-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

/* ==========================================================================
   Sidebar Styles
   ========================================================================== */
.page-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: var(--text-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.sidebar-widget h3 {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 15px 20px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
}

.sidebar-widget ul {
    padding: 15px 0;
}

.sidebar-widget ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.sidebar-widget ul li a:hover,
.sidebar-widget ul li a.active {
    background-color: var(--bg-light);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-with-sidebar {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--text-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .doctors-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .cosmetic-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cosmetic-grid {
        direction: rtl;
    }

    .cosmetic-grid > * {
        direction: ltr;
    }

    .doctor-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .doctor-profile-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* ==========================================================================
   Treatment Detail Styles
   ========================================================================== */
.treatment-detail {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.treatment-detail:last-of-type {
    border-bottom: none;
}

.treatment-detail h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.treatment-detail h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.treatment-detail p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.treatment-benefits {
    margin: 20px 0;
    padding-left: 0;
}

.treatment-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.treatment-benefits li i {
    color: var(--secondary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-white);
}

.cta-box h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.cta-box .btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--text-white);
}

/* Map Section */
.map-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
}

/* Contact Info Box Icons */
.contact-info-box h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}
