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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4682A9;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 251, 222, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(70, 130, 169, 0.1);
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4682A9;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #749BC2;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #4682A9;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4682A9;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    background: rgba(255, 251, 222, 0.9);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #4682A9;
}

.hamburger:hover {
    background: rgba(255, 251, 222, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #4682A9;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #91C8E4;
    color: white;
}

.btn-primary:hover {
    background: #749BC2;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(145, 200, 228, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #4682A9;
    transform: translateY(-2px);
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-home h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info-home .phone {
    font-size: 1.7rem;
    font-weight: 700;
    color: #91C8E4;
    margin-bottom: 0.5rem;
}

.contact-info-home .email {
    color: white;
    opacity: 0.9;
}

/* Quick Overview Section */
.quick-overview {
    padding: 6rem 0;
    background: #FFFBDE;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.overview-card i {
    font-size: 3rem;
    color: #4682A9;
    margin-bottom: 1.5rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    color: #4682A9;
    margin-bottom: 1rem;
}

.overview-card p {
    color: #749BC2;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4682A9;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #749BC2;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #e7e7e5;
}

.about-image {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 420px;
    max-height: 650px;
}

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

.about-text h3 {
    font-size: 2rem;
    color: #4682A9;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #749BC2;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #4682A9;
    font-size: 1.5rem;
    width: 30px;
}

.image-placeholder {
    height: 100%;
    min-height: 380px;
    max-height: 600px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* About Page Carousel Styles */
#about-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    object-fit: cover;
    transition: opacity 0.5s;
    background: #eee;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(70,130,169,0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #4682A9;
}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}

.carousel-indicators {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    border: 1.5px solid #4682A9;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}

.carousel-dot.active {
    background: #4682A9;
    border-color: #fff;
}

/* Mission & Values */
.mission-values {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #FFFBDE;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #4682A9;
    margin-bottom: 1rem;
}

.value-card p {
    color: #749BC2;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: #FFFBDE;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.member-photo i {
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #4682A9;
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: #91C8E4;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #749BC2;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 6rem 0;
}

.nav-logo a img{
    width: auto;
    height: 65px;
    display: block;
    border-radius: 35%;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #4682A9;
    margin-bottom: 1rem;
}

.service-card p {
    color: #749BC2;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #749BC2;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4682A9;
    font-weight: bold;
}

/* Additional Services */
.additional-services {
    padding: 6rem 0;
    background: #FFFBDE;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    justify-items: center;
}

.additional-service {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.additional-service i {
    font-size: 2.5rem;
    color: #4682A9;
    margin-bottom: 1rem;
}

.additional-service h3 {
    font-size: 1.3rem;
    color: #4682A9;
    margin-bottom: 1rem;
}

.additional-service p {
    color: #749BC2;
    line-height: 1.6;
}

/* Care Levels */
.care-levels {
    padding: 6rem 0;
    background: white;
}

.care-levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.care-level {
    max-width: 500px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.care-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.care-level h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.care-level p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.care-level ul {
    list-style: none;
}

.care-level li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.care-level li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: #FFFBDE;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #91C8E4;
}

.location-item i {
    font-size: 2.5rem;
    color: #4682A9;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.location-item h4 {
    color: #4682A9;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.location-item p {
    color: #749BC2;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.location-item .distance {
    background: linear-gradient(135deg, #4682A9 0%, #749BC2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.location-map {
    position: sticky;
    top: 100px;
}

.map-placeholder {
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    height: 400px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23map)"/></svg>');
    opacity: 0.3;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.map-placeholder p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.map-details {
    margin-top: 2rem;
    text-align: left;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.map-details p {
    margin: 0.75rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Neighborhood Section */
.neighborhood {
    padding: 6rem 0;
    background: white;
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 2rem;
}

.neighborhood-card {
    background: #FFFBDE;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.neighborhood-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
}

.neighborhood-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: white;
}

.neighborhood-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.neighborhood-icon i {
    font-size: 2.5rem;
    color: white;
}

.neighborhood-card h3 {
    font-size: 1.5rem;
    color: #4682A9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.neighborhood-card p {
    color: #749BC2;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Transportation Section */
.transportation {
    padding: 6rem 0;
    background: #FFFBDE;
}

.transportation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.transportation-option {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.transportation-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
}

.transportation-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.transportation-option i {
    font-size: 3.5rem;
    color: #4682A9;
    margin-bottom: 2rem;
}

.transportation-option h3 {
    font-size: 1.5rem;
    color: #4682A9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.transportation-option p {
    color: #749BC2;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.transportation-option ul {
    list-style: none;
}

.transportation-option li {
    padding: 0.75rem 0;
    color: #749BC2;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.transportation-option li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #91C8E4;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Visiting Hours */
.visiting-hours {
    padding: 6rem 0;
    background: white;
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-item {
    background: #FFFBDE;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
}

.hours-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.hours-item h4 {
    color: #4682A9;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.hours-item p {
    color: #749BC2;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.hours-item span {
    color: #91C8E4;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(145, 200, 228, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: inline-block;
}

.visiting-guidelines {
    background: #FFFBDE;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(70, 130, 169, 0.1);
}

.visiting-guidelines h3 {
    color: #4682A9;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.visiting-guidelines ul {
    list-style: none;
}

.visiting-guidelines li {
    padding: 1rem 0;
    color: #749BC2;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(70, 130, 169, 0.1);
    font-size: 1rem;
    line-height: 1.5;
}

.visiting-guidelines li:last-child {
    border-bottom: none;
}

.visiting-guidelines li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4682A9;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* Featured Post */
.featured-post {
    padding: 6rem 0;
    background: white;
}

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

.featured-image {
    height: 400px;
}

.featured-text {
    padding: 2rem 0;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-meta .date,
.post-meta .category {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.post-meta .category {
    background: #ff6b6b;
    color: white;
}

.featured-text h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e3a8a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.blog-image i {
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: #ff6b6b;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Categories */
.categories {
    padding: 6rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.category-card i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.category-card span {
    color: #666;
    font-size: 0.9rem;
}

/* Recent Posts */
.recent-posts {
    padding: 6rem 0;
    background: #f8f9fa;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recent-post {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recent-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.post-thumbnail i {
    font-size: 1.5rem;
}

.post-info h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.post-info .date {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section - Enhanced UI */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: fit-content;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-form h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.contact-form > p {
    color: #666;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f8f9fa;
    color: #333;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin: 0;
}

.checkbox-label:hover {
    background: #e9ecef;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #667eea;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form form button[type="submit"] {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.contact-form form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.contact-form form button[type="submit"]:active {
    transform: translateY(-1px);
}

.contact-form form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Map Section - Enhanced */
.map-section {
    padding: 6rem 0;
    background: white;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    height: 400px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23map)"/></svg>');
    opacity: 0.3;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.map-placeholder p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.map-details {
    margin-top: 2rem;
    text-align: left;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.map-details p {
    margin: 0.75rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Neighborhood Section */
.neighborhood {
    padding: 6rem 0;
    background: white;
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 2rem;
}

.neighborhood-card {
    background: #FFFBDE;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.neighborhood-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
}

.neighborhood-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: white;
}

.neighborhood-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.neighborhood-icon i {
    font-size: 2.5rem;
    color: white;
}

.neighborhood-card h3 {
    font-size: 1.5rem;
    color: #4682A9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.neighborhood-card p {
    color: #749BC2;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Transportation Section */
.transportation {
    padding: 6rem 0;
    background: #FFFBDE;
}

.transportation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.transportation-option {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.transportation-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
}

.transportation-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.transportation-option i {
    font-size: 3.5rem;
    color: #4682A9;
    margin-bottom: 2rem;
}

.transportation-option h3 {
    font-size: 1.5rem;
    color: #4682A9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.transportation-option p {
    color: #749BC2;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.transportation-option ul {
    list-style: none;
}

.transportation-option li {
    padding: 0.75rem 0;
    color: #749BC2;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.transportation-option li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #91C8E4;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Visiting Hours */
.visiting-hours {
    padding: 6rem 0;
    background: white;
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-item {
    background: #FFFBDE;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.hours-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
}

.hours-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.hours-item h4 {
    color: #4682A9;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.hours-item p {
    color: #749BC2;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.hours-item span {
    color: #91C8E4;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(145, 200, 228, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    display: inline-block;
}

.visiting-guidelines {
    background: #FFFBDE;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(70, 130, 169, 0.1);
}

.visiting-guidelines h3 {
    color: #4682A9;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.visiting-guidelines ul {
    list-style: none;
}

.visiting-guidelines li {
    padding: 1rem 0;
    color: #749BC2;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(70, 130, 169, 0.1);
    font-size: 1rem;
    line-height: 1.5;
}

.visiting-guidelines li:last-child {
    border-bottom: none;
}

.visiting-guidelines li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4682A9;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* Featured Post */
.featured-post {
    padding: 6rem 0;
    background: white;
}

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

.featured-image {
    height: 400px;
}

.featured-text {
    padding: 2rem 0;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-meta .date,
.post-meta .category {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.post-meta .category {
    background: #ff6b6b;
    color: white;
}

.featured-text h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e3a8a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.blog-image i {
    font-size: 3rem;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    background: #ff6b6b;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Categories */
.categories {
    padding: 6rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.category-card i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.category-card span {
    color: #666;
    font-size: 0.9rem;
}

/* Recent Posts */
.recent-posts {
    padding: 6rem 0;
    background: #f8f9fa;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recent-post {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recent-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.post-thumbnail i {
    font-size: 1.5rem;
}

.post-info h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
}

.post-info .date {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section - Enhanced UI */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-item span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: fit-content;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-form h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.contact-form > p {
    color: #666;
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f8f9fa;
    color: #333;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin: 0;
}

.checkbox-label:hover {
    background: #e9ecef;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #667eea;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form form button[type="submit"] {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.contact-form form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.contact-form form button[type="submit"]:active {
    transform: translateY(-1px);
}

.contact-form form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Map Section - Enhanced */
.map-section {
    padding: 6rem 0;
    background: white;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    height: 400px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23map)"/></svg>');
    opacity: 0.3;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.map-placeholder p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.map-details {
    margin-top: 2rem;
    text-align: left;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.map-details p {
    margin: 0.75rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.map-actions .btn {
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.map-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.map-actions .btn-secondary {
    background: white;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.map-actions .btn-secondary:hover {
    background: #2c5aa0;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(44, 90, 160, 0.3);
}

/* FAQ Section - Enhanced */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #4682A9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background: white;
}

.faq-item h3 {
    color: #2c5aa0;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-item h3 {
    font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .faq-item p {
        font-size: 0.85rem;
    }
}

/* Emergency Contact - Enhanced */
.emergency-contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="emergency" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23emergency)"/></svg>');
    opacity: 0.3;
}

.emergency-content {
    position: relative;
    z-index: 1;
}

.emergency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.emergency-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.emergency-phone i {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.emergency-phone span {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.emergency-note {
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

/* Footer */
.footer {
    background: #4682A9;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #FFFBDE;
}

.footer-section p {
    color: #91C8E4;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #91C8E4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFFBDE;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 251, 222, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFBDE;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 251, 222, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 251, 222, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #91C8E4;
}

/* Responsive Design - Mobile First */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content,
    .location-content,
    .hours-content,
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .additional-services-grid,
    .care-levels-grid,
    .neighborhood-grid,
    .transportation-grid,
    .highlights-grid,
    .gallery-grid,
    .testimonials-grid,
    .features-grid,
    .blog-grid,
    .categories-grid,
    .recent-posts-grid,
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-features {
        grid-template-columns: 1fr;
    }
    
    /* Location page specific mobile styles */
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .location-item i {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .location-item h4 {
        font-size: 1.1rem;
    }
    
    .location-item p {
        font-size: 0.9rem;
    }
    
    .location-item .distance {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .map-placeholder {
        height: 300px;
        padding: 2rem 1rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.4rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
    
    .map-details {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .map-details p {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
    
    /* Neighborhood section mobile */
    .neighborhood-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .neighborhood-card {
        padding: 2rem 1.5rem;
    }
    
    .neighborhood-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .neighborhood-icon i {
        font-size: 2rem;
    }
    
    .neighborhood-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .neighborhood-card p {
        font-size: 1rem;
    }
    
    /* Transportation section mobile */
    .transportation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .transportation-option {
        padding: 2rem 1.5rem;
    }
    
    .transportation-option i {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .transportation-option h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .transportation-option p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .transportation-option li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    /* Visiting hours mobile */
    .hours-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hours-item {
        padding: 2rem 1.5rem;
    }
    
    .hours-item h4 {
        font-size: 1.2rem;
    }
    
    .hours-item p {
        font-size: 1rem;
    }
    
    .visiting-guidelines {
        padding: 2rem 1.5rem;
    }
    
    .visiting-guidelines h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .visiting-guidelines li {
        font-size: 0.9rem;
        padding: 0.75rem 0;
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #FFFBDE;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Add backdrop overlay for mobile menu */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(70, 130, 169, 0.3);
        z-index: -1;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        display: block;
        color: #4682A9;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #749BC2;
        background: rgba(145, 200, 228, 0.1);
    }

    /* Mobile Typography */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    /* Mobile Layouts */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }

    .about-content,
    .contact-content,
    .location-content,
    .hours-content,
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .overview-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .additional-services-grid,
    .care-levels-grid,
    .neighborhood-grid,
    .transportation-grid,
    .highlights-grid,
    .gallery-grid,
    .testimonials-grid,
    .features-grid,
    .blog-grid,
    .categories-grid,
    .recent-posts-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Mobile Buttons */
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 15px 30px;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions .btn {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
    }

    /* Mobile Cards */
    .service-card,
    .blog-card,
    .overview-card,
    .team-member,
    .value-card,
    .additional-service,
    .care-level,
    .neighborhood-card,
    .transportation-option,
    .highlight-item,
    .gallery-item,
    .testimonial-card,
    .feature-card,
    .category-card,
    .recent-post,
    .faq-item,
    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    .service-card h3,
    .blog-card h3,
    .overview-card h3,
    .team-member h3,
    .value-card h3,
    .additional-service h3,
    .care-level h3,
    .neighborhood-card h3,
    .transportation-option h3,
    .highlight-item h3,
    .gallery-item h3,
    .testimonial-card h3,
    .feature-card h3,
    .category-card h3,
    .faq-item h3 {
        font-size: 1.3rem;
        color: #4682A9;
    }

    /* Mobile Form */
    .contact-form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
        border-radius: 10px;
        border: 2px solid #e2e8f0;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #91C8E4;
        box-shadow: 0 0 0 3px rgba(145, 200, 228, 0.1);
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
        min-height: 48px;
    }

    /* Mobile Map Modal */
    .map-modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .map-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .map-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .close-btn {
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }
    
    .map-modal-body {
        min-height: 50vh;
        max-height: 75vh;
        border-radius: 0 0 12px 12px;
        display: flex;
        flex-direction: column;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 250px;
        border-radius: 0;
        order: 1;
        flex: 1;
    }
    
    .directions-info {
        padding: 1rem;
        max-height: 35vh;
        border-radius: 0 0 12px 12px;
        order: 2;
        flex-shrink: 0;
    }
    
    .destination-info {
        margin-bottom: 1rem;
    }
    
    .destination-info h4 {
        font-size: 0.95rem;
    }
    
    .destination-info p {
        font-size: 0.85rem;
    }
    
    .route-info h4 {
        font-size: 0.95rem;
    }
    
    #routeDetails {
        padding: 0.5rem;
    }
    
    #routeDetails p {
        font-size: 0.8rem;
    }
    
    .map-actions-modal .btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .map-modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 98vh;
    }
    
    .map-modal-header {
        padding: 0.75rem 1rem;
    }
    
    .map-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close-btn {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
    
    .map-modal-body {
        min-height: 50vh;
        max-height: 75vh;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 250px;
        order: 1;
    }
    
    .directions-info {
        padding: 1rem;
        max-height: 35vh;
        order: 2;
    }
    
    .destination-info {
        margin-bottom: 1rem;
    }
    
    .destination-info h4 {
        font-size: 0.95rem;
    }
    
    .destination-info p {
        font-size: 0.85rem;
    }
    
    .route-info h4 {
        font-size: 0.95rem;
    }
    
    #routeDetails {
        padding: 0.5rem;
    }
    
    #routeDetails p {
        font-size: 0.8rem;
    }
    
    .map-actions-modal .btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .map-modal-content {
        margin: 1% auto;
        max-height: 98vh;
    }
    
    .map-modal-body {
        display: grid;
        grid-template-columns: 1fr 250px;
        grid-template-rows: 1fr;
        min-height: 70vh;
    }
    
    .google-map {
        min-height: 400px;
        order: 1;
        flex: none;
    }
    
    .leaflet-container {
        min-height: 400px;
        order: 1;
        flex: none;
    }
    
    .directions-info {
        max-height: none;
        overflow-y: auto;
        order: 2;
        flex: none;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .close-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better form inputs */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
    }
    
    /* Better checkbox */
    .checkbox-label {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .checkbox-label input[type="checkbox"] {
        min-width: 20px;
        min-height: 20px;
    }
    
    /* Better social links */
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better map modal close button */
    .map-modal-header .close-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn,
    .nav-link,
    .form-group input,
    .form-group select,
    .form-group textarea {
        /*-webkit-appearance: none;*/
        border-radius: 8px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in-up {
        animation: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .btn,
    .map-modal,
    .social-links {
        display: none !important;
    }
    
    .hero,
    .page-header {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
} 

/* Video Tour Section */
.video-tour {
    padding: 6rem 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 450px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-duration {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Tour Highlights */
.tour-highlights {
    padding: 6rem 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-video {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-thumbnail i {
    font-size: 3rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.highlight-video:hover .video-thumbnail i {
    opacity: 1;
    transform: scale(1.1);
}

.highlight-content {
    padding: 2rem;
}

.highlight-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.duration {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Photo Gallery */
.photo-gallery {
    padding: 1rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-carousel {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.gallery-image {
    height: 200px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-image {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item h4 {
    color: #4682A9;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0 1.5rem;
}

.gallery-item p {
    color: #749BC2;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 1.5rem 1.5rem;
}

/* Gallery Carousel Controls */
.gallery-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(70, 130, 169, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel .carousel-btn:hover {
    background: rgba(70, 130, 169, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-carousel .prev-btn {
    left: 10px;
}

.gallery-carousel .next-btn {
    right: 10px;
}

.gallery-carousel .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.gallery-carousel .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(70, 130, 169, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-carousel .carousel-dot.active {
    background: #4682A9;
    border-color: white;
    transform: scale(1.2);
}

/* Photo Gallery Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item {
        padding: 1.5rem;
    }
    
    .gallery-carousel {
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-image img {
        border-radius: 12px;
    }
    
    .gallery-carousel .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .gallery-carousel .prev-btn {
        left: 8px;
    }
    
    .gallery-carousel .next-btn {
        right: 8px;
    }
    
    .gallery-carousel .carousel-indicators {
        bottom: 8px;
        gap: 5px;
    }
    
    .gallery-carousel .carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .gallery-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item p {
        font-size: 0.85rem;
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        padding: 1rem;
    }
    
    .gallery-carousel {
        height: 160px;
    }
    
    .gallery-image {
        height: 160px;
    }
    
    .gallery-carousel .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .gallery-carousel .carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    .gallery-item h4 {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item p {
        font-size: 0.8rem;
        padding: 0 0.5rem 0.5rem;
    }
}

@media (max-width: 900px) {
    .about-image {
        min-height: 280px;
        max-height: 400px;
    }
    
    .image-placeholder {
        min-height: 220px;
        max-height: 320px;
    }
    
    .carousel-image {
        max-height: 320px;
    }
}

@media (max-width: 600px) {
    .carousel-image {
        max-height: 220px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        min-height: 250px;
        max-height: 350px;
    }
    
    .image-placeholder {
        min-height: 200px;
        max-height: 280px;
    }
    
    .carousel-image {
        max-height: 280px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .carousel-indicators {
        bottom: 12px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Facility Amenities Section */
.facility-amenities {
    padding: 6rem 0;
    background: #FFFBDE;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 20px 20px 0 0;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #91C8E4;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.amenity-icon i {
    font-size: 2rem;
    color: white;
}

.amenity-card h3 {
    color: #4682A9;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.amenity-card p {
    color: #749BC2;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Facility Amenities Mobile Responsive */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .amenity-card {
        padding: 2rem;
    }
    
    .amenity-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .amenity-icon i {
        font-size: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-icon {
        width: 50px;
        height: 50px;
    }
    
    .amenity-icon i {
        font-size: 1.3rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.85rem;
    }
}

/* Virtual Tour Features Section */
.virtual-tour-features {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #FFFBDE;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 25px 25px 0 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: white;
    border-color: #91C8E4;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    color: #4682A9;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #749BC2;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Virtual Tour Features Mobile Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Map Modal Styles */
#mapModal,
.map-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.map-modal-content {
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.map-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.map-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.map-modal-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 500px;
    max-height: 70vh;
    overflow-y: auto;
    flex: 1;
}

.google-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
}

.leaflet-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
}

.directions-info {
    padding: 2rem;
    background-color: #f8f9fa;
    overflow-y: auto;
}

.destination-info {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.destination-info h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.destination-info p {
    color: #666;
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.route-info h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#routeDetails {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

#routeDetails p {
    margin: 0.5rem 0;
    color: #333;
    font-size: 0.9rem;
    }
    
    .map-actions-modal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    }
    
    .map-actions-modal .btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

/* Tablet and smaller desktop breakpoint */
@media (max-width: 1024px) {
    .map-modal-content {
        width: 95%;
        margin: 3% auto;
        max-width: 900px;
    }
    
    .map-modal-body {
        grid-template-columns: 1.5fr 1fr;
        min-height: 450px;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 350px;
    }
    
    .directions-info {
        padding: 1.5rem;
    }
}

/* Medium mobile breakpoint */
@media (max-width: 600px) {
    .map-modal-content {
        width: 96%;
        margin: 4% auto;
        max-height: 92vh;
    }
    
    .map-modal-header {
        padding: 1rem 1.25rem;
    }
    
    .map-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .close-btn {
        font-size: 1.6rem;
        width: 32px;
        height: 32px;
    }
    
    .map-modal-body {
        min-height: 55vh;
        max-height: 75vh;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 280px;
    }
    
    .directions-info {
        padding: 1.25rem;
        max-height: 38vh;
    }
    
    .map-actions-modal {
        gap: 0.5rem;
    }
    
    .map-actions-modal .btn {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
    .map-modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 98vh;
        border-radius: 12px;
    }
    
    .map-modal-header {
        padding: 0.75rem 1rem;
        border-radius: 12px 12px 0 0;
    }
    
    .map-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close-btn {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
    
    .map-modal-body {
        min-height: 50vh;
        max-height: 75vh;
        border-radius: 0 0 12px 12px;
        display: flex;
        flex-direction: column;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 250px;
        border-radius: 0;
        order: 1;
        flex: 1;
    }
    
    .directions-info {
        padding: 1rem;
        max-height: 35vh;
        border-radius: 0 0 12px 12px;
        order: 2;
        flex-shrink: 0;
    }
    
    .destination-info {
        margin-bottom: 1rem;
    }
    
    .destination-info h4 {
        font-size: 0.95rem;
    }
    
    .destination-info p {
        font-size: 0.85rem;
    }
    
    .route-info h4 {
        font-size: 0.95rem;
    }
    
    #routeDetails {
        padding: 0.5rem;
    }
    
    #routeDetails p {
        font-size: 0.8rem;
    }
    
    .map-actions-modal .btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Extra small mobile breakpoint */
@media (max-width: 360px) {
    .map-modal-content {
        width: 99%;
        margin: 1% auto;
    }
    
    .map-modal-header {
        padding: 0.5rem 0.75rem;
    }
    
    .map-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .close-btn {
        font-size: 1.3rem;
        width: 28px;
        height: 28px;
    }
    
    .map-modal-body {
        min-height: 45vh;
        display: flex;
        flex-direction: column;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 220px;
        order: 1;
        flex: 1;
    }
    
    .directions-info {
        padding: 0.75rem;
        max-height: 32vh;
        order: 2;
        flex-shrink: 0;
    }
    
    .map-actions-modal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .map-actions-modal .btn {
        width: 100%;
        padding: 0.7rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .map-modal-content {
        margin: 1% auto;
        max-height: 98vh;
    }
    
    .map-modal-body {
        display: grid;
        grid-template-columns: 1fr 250px;
        grid-template-rows: 1fr;
        min-height: 70vh;
    }
    
    .google-map {
        min-height: 400px;
        order: 1;
        flex: none;
    }
    
    .leaflet-container {
        min-height: 400px;
        order: 1;
        flex: none;
    }
    
    .directions-info {
        max-height: none;
        overflow-y: auto;
        order: 2;
        flex: none;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .close-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better form inputs */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
    }
    
    /* Better checkbox */
    .checkbox-label {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .checkbox-label input[type="checkbox"] {
        min-width: 20px;
        min-height: 20px;
    }
    
    /* Better social links */
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better map modal close button */
    .map-modal-header .close-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn,
    .nav-link,
    .form-group input,
    .form-group select,
    .form-group textarea {
        /*-webkit-appearance: none;*/
        border-radius: 8px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in-up {
        animation: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .btn,
    .map-modal,
    .social-links {
        display: none !important;
    }
    
    .hero,
    .page-header {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
} 

/* Video Tour Section */
.video-tour {
    padding: 6rem 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 450px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-duration {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Tour Highlights */
.tour-highlights {
    padding: 6rem 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-video {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-thumbnail i {
    font-size: 3rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.highlight-video:hover .video-thumbnail i {
    opacity: 1;
    transform: scale(1.1);
}

.highlight-content {
    padding: 2rem;
}

.highlight-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.duration {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Photo Gallery */
.photo-gallery {
    padding: 1rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-carousel {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.gallery-image {
    height: 200px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-image {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item h4 {
    color: #4682A9;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0 1.5rem;
}

.gallery-item p {
    color: #749BC2;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 1.5rem 1.5rem;
}

/* Gallery Carousel Controls */
.gallery-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(70, 130, 169, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel .carousel-btn:hover {
    background: rgba(70, 130, 169, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-carousel .prev-btn {
    left: 10px;
}

.gallery-carousel .next-btn {
    right: 10px;
}

.gallery-carousel .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.gallery-carousel .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(70, 130, 169, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-carousel .carousel-dot.active {
    background: #4682A9;
    border-color: white;
    transform: scale(1.2);
}

/* Photo Gallery Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item {
        padding: 1.5rem;
    }
    
    .gallery-carousel {
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-image img {
        border-radius: 12px;
    }
    
    .gallery-carousel .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .gallery-carousel .prev-btn {
        left: 8px;
    }
    
    .gallery-carousel .next-btn {
        right: 8px;
    }
    
    .gallery-carousel .carousel-indicators {
        bottom: 8px;
        gap: 5px;
    }
    
    .gallery-carousel .carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .gallery-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item p {
        font-size: 0.85rem;
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        padding: 1rem;
    }
    
    .gallery-carousel {
        height: 160px;
    }
    
    .gallery-image {
        height: 160px;
    }
    
    .gallery-carousel .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .gallery-carousel .carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    .gallery-item h4 {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item p {
        font-size: 0.8rem;
        padding: 0 0.5rem 0.5rem;
    }
}

@media (max-width: 900px) {
    .about-image {
        min-height: 280px;
        max-height: 400px;
    }
    
    .image-placeholder {
        min-height: 220px;
        max-height: 320px;
    }
    
    .carousel-image {
        max-height: 320px;
    }
}

@media (max-width: 600px) {
    .carousel-image {
        max-height: 220px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        min-height: 250px;
        max-height: 350px;
    }
    
    .image-placeholder {
        min-height: 200px;
        max-height: 280px;
    }
    
    .carousel-image {
        max-height: 280px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .carousel-indicators {
        bottom: 12px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Facility Amenities Section */
.facility-amenities {
    padding: 6rem 0;
    background: #FFFBDE;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 20px 20px 0 0;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #91C8E4;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.amenity-icon i {
    font-size: 2rem;
    color: white;
}

.amenity-card h3 {
    color: #4682A9;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.amenity-card p {
    color: #749BC2;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Facility Amenities Mobile Responsive */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .amenity-card {
        padding: 2rem;
    }
    
    .amenity-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .amenity-icon i {
        font-size: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-icon {
        width: 50px;
        height: 50px;
    }
    
    .amenity-icon i {
        font-size: 1.3rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.85rem;
    }
}

/* Virtual Tour Features Section */
.virtual-tour-features {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #FFFBDE;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 25px 25px 0 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: white;
    border-color: #91C8E4;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    color: #4682A9;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #749BC2;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Virtual Tour Features Mobile Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Map Modal Styles */
#mapModal,
.map-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.map-modal-content {
    background-color: white;
    margin: 5% auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.map-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.map-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.map-modal-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 500px;
    max-height: 70vh;
    overflow-y: auto;
    flex: 1;
}

.google-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
}

.leaflet-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 0;
}

.directions-info {
    padding: 2rem;
    background-color: #f8f9fa;
    overflow-y: auto;
}

.destination-info {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.destination-info h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.destination-info p {
    color: #666;
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.route-info h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#routeDetails {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

#routeDetails p {
    margin: 0.5rem 0;
    color: #333;
    font-size: 0.9rem;
    }
    
    .map-actions-modal {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    }
    
    .map-actions-modal .btn {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

/* Tablet and smaller desktop breakpoint */
@media (max-width: 1024px) {
    .map-modal-content {
        width: 95%;
        margin: 3% auto;
        max-width: 900px;
    }
    
    .map-modal-body {
        grid-template-columns: 1.5fr 1fr;
        min-height: 450px;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 350px;
    }
    
    .directions-info {
        padding: 1.5rem;
    }
}

/* Medium mobile breakpoint */
@media (max-width: 600px) {
    .map-modal-content {
        width: 96%;
        margin: 4% auto;
        max-height: 92vh;
    }
    
    .map-modal-header {
        padding: 1rem 1.25rem;
    }
    
    .map-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .close-btn {
        font-size: 1.6rem;
        width: 32px;
        height: 32px;
    }
    
    .map-modal-body {
        min-height: 55vh;
        max-height: 75vh;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 280px;
    }
    
    .directions-info {
        padding: 1.25rem;
        max-height: 38vh;
    }
    
    .map-actions-modal {
        gap: 0.5rem;
    }
    
    .map-actions-modal .btn {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
    .map-modal-content {
        width: 98%;
        margin: 2% auto;
        max-height: 98vh;
        border-radius: 12px;
    }
    
    .map-modal-header {
        padding: 0.75rem 1rem;
        border-radius: 12px 12px 0 0;
    }
    
    .map-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close-btn {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
    
    .map-modal-body {
        min-height: 50vh;
        max-height: 75vh;
        border-radius: 0 0 12px 12px;
        display: flex;
        flex-direction: column;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 250px;
        border-radius: 0;
        order: 1;
        flex: 1;
    }
    
    .directions-info {
        padding: 1rem;
        max-height: 35vh;
        border-radius: 0 0 12px 12px;
        order: 2;
        flex-shrink: 0;
    }
    
    .destination-info {
        margin-bottom: 1rem;
    }
    
    .destination-info h4 {
        font-size: 0.95rem;
    }
    
    .destination-info p {
        font-size: 0.85rem;
    }
    
    .route-info h4 {
        font-size: 0.95rem;
    }
    
    #routeDetails {
        padding: 0.5rem;
    }
    
    #routeDetails p {
        font-size: 0.8rem;
    }
    
    .map-actions-modal .btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Extra small mobile breakpoint */
@media (max-width: 360px) {
    .map-modal-content {
        width: 99%;
        margin: 1% auto;
    }
    
    .map-modal-header {
        padding: 0.5rem 0.75rem;
    }
    
    .map-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .close-btn {
        font-size: 1.3rem;
        width: 28px;
        height: 28px;
    }
    
    .map-modal-body {
        min-height: 45vh;
        display: flex;
        flex-direction: column;
    }
    
    .google-map,
    .leaflet-container {
        min-height: 220px;
        order: 1;
        flex: 1;
    }
    
    .directions-info {
        padding: 0.75rem;
        max-height: 32vh;
        order: 2;
        flex-shrink: 0;
    }
    
    .map-actions-modal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .map-actions-modal .btn {
        width: 100%;
        padding: 0.7rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .map-modal-content {
        margin: 1% auto;
        max-height: 98vh;
    }
    
    .map-modal-body {
        display: grid;
        grid-template-columns: 1fr 250px;
        grid-template-rows: 1fr;
        min-height: 70vh;
    }
    
    .google-map {
        min-height: 400px;
        order: 1;
        flex: none;
    }
    
    .leaflet-container {
        min-height: 400px;
        order: 1;
        flex: none;
    }
    
    .directions-info {
        max-height: none;
        overflow-y: auto;
        order: 2;
        flex: none;
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .close-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better form inputs */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
    }
    
    /* Better checkbox */
    .checkbox-label {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .checkbox-label input[type="checkbox"] {
        min-width: 20px;
        min-height: 20px;
    }
    
    /* Better social links */
    .social-links a {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Better map modal close button */
    .map-modal-header .close-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn,
    .nav-link,
    .form-group input,
    .form-group select,
    .form-group textarea {
        /*-webkit-appearance: none;*/
        border-radius: 8px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in-up {
        animation: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .btn,
    .map-modal,
    .social-links {
        display: none !important;
    }
    
    .hero,
    .page-header {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
} 

/* Video Tour Section */
.video-tour {
    padding: 6rem 0;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 450px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-duration {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Tour Highlights */
.tour-highlights {
    padding: 6rem 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlight-video {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-thumbnail i {
    font-size: 3rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.highlight-video:hover .video-thumbnail i {
    opacity: 1;
    transform: scale(1.1);
}

.highlight-content {
    padding: 2rem;
}

.highlight-content h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.duration {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Photo Gallery */
.photo-gallery {
    padding: 1rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-carousel {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.gallery-image {
    height: 200px;
    background: linear-gradient(135deg, #749BC2 0%, #4682A9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-image {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item h4 {
    color: #4682A9;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0 1.5rem;
}

.gallery-item p {
    color: #749BC2;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 1.5rem 1.5rem;
}

/* Gallery Carousel Controls */
.gallery-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(70, 130, 169, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel .carousel-btn:hover {
    background: rgba(70, 130, 169, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-carousel .prev-btn {
    left: 10px;
}

.gallery-carousel .next-btn {
    right: 10px;
}

.gallery-carousel .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.gallery-carousel .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(70, 130, 169, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-carousel .carousel-dot.active {
    background: #4682A9;
    border-color: white;
    transform: scale(1.2);
}

/* Photo Gallery Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item {
        padding: 1.5rem;
    }
    
    .gallery-carousel {
        height: 180px;
        margin-bottom: 1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-image img {
        border-radius: 12px;
    }
    
    .gallery-carousel .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .gallery-carousel .prev-btn {
        left: 8px;
    }
    
    .gallery-carousel .next-btn {
        right: 8px;
    }
    
    .gallery-carousel .carousel-indicators {
        bottom: 8px;
        gap: 5px;
    }
    
    .gallery-carousel .carousel-dot {
        width: 7px;
        height: 7px;
    }
    
    .gallery-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        padding: 0 1rem;
    }
    
    .gallery-item p {
        font-size: 0.85rem;
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        padding: 1rem;
    }
    
    .gallery-carousel {
        height: 160px;
    }
    
    .gallery-image {
        height: 160px;
    }
    
    .gallery-carousel .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .gallery-carousel .carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    .gallery-item h4 {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .gallery-item p {
        font-size: 0.8rem;
        padding: 0 0.5rem 0.5rem;
    }
}

@media (max-width: 900px) {
    .about-image {
        min-height: 280px;
        max-height: 400px;
    }
    
    .image-placeholder {
        min-height: 220px;
        max-height: 320px;
    }
    
    .carousel-image {
        max-height: 320px;
    }
}

@media (max-width: 600px) {
    .carousel-image {
        max-height: 220px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        min-height: 250px;
        max-height: 350px;
    }
    
    .image-placeholder {
        min-height: 200px;
        max-height: 280px;
    }
    
    .carousel-image {
        max-height: 280px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .carousel-indicators {
        bottom: 12px;
        gap: 6px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Facility Amenities Section */
.facility-amenities {
    padding: 6rem 0;
    background: #FFFBDE;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 20px 20px 0 0;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #91C8E4;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.amenity-icon i {
    font-size: 2rem;
    color: white;
}

.amenity-card h3 {
    color: #4682A9;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.amenity-card p {
    color: #749BC2;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Facility Amenities Mobile Responsive */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .amenity-card {
        padding: 2rem;
    }
    
    .amenity-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .amenity-icon i {
        font-size: 1.5rem;
    }
    
    .amenity-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .amenity-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .amenity-card {
        padding: 1.5rem;
    }
    
    .amenity-icon {
        width: 50px;
        height: 50px;
    }
    
    .amenity-icon i {
        font-size: 1.3rem;
    }
    
    .amenity-card h3 {
        font-size: 1.1rem;
    }
    
    .amenity-card p {
        font-size: 0.85rem;
    }
}

/* Virtual Tour Features Section */
.virtual-tour-features {
    padding: 6rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #FFFBDE;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 25px 25px 0 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: white;
    border-color: #91C8E4;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #91C8E4 0%, #749BC2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    color: #4682A9;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #749BC2;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Virtual Tour Features Mobile Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
}

/* Enhanced Responsive Design for Index Page */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1400px;
        gap: 5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-container {
        max-width: 1200px;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-container {
        max-width: 1000px;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .overview-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .hero-card {
        padding: 1.5rem;
    }
    
    .contact-info-home .phone {
        font-size: 1.5rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .hero-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-info-home .phone {
        font-size: 1.4rem;
    }
}

/* Mobile Large (600px - 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .overview-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .overview-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .overview-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-card {
        max-width: 350px;
        margin: 0 auto;
        padding: 1.5rem;
    }
    
    .contact-info-home h3 {
        font-size: 1.3rem;
    }
    
    .contact-info-home .phone {
        font-size: 1.3rem;
    }
    
    .contact-info-home .email {
        font-size: 0.9rem;
    }
}

/* Mobile Medium (480px - 599px) */
@media (max-width: 599px) and (min-width: 480px) {
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .overview-card {
        padding: 1.2rem;
        text-align: center;
    }
    
    .overview-card i {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .overview-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .overview-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }
    
    .overview-card .btn {
        max-width: 200px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .hero-card {
        max-width: 320px;
        margin: 0 auto;
        padding: 1.2rem;
    }
    
    .contact-info-home h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-home .phone {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-home .email {
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
}

/* Mobile Small (360px - 479px) */
@media (max-width: 479px) and (min-width: 360px) {
    .hero {
        min-height: 85vh;
        padding-top: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.2rem;
        padding: 0.8rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    
    .btn {
        width: 100%;
        max-width: 240px;
        padding: 11px 18px;
        font-size: 0.85rem;
        min-height: 42px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .overview-card {
        padding: 1rem;
        text-align: center;
    }
    
    .overview-card i {
        font-size: 2rem;
        margin-bottom: 0.7rem;
    }
    
    .overview-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .overview-card p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .overview-card .btn {
        max-width: 180px;
        padding: 9px 16px;
        font-size: 0.8rem;
    }
    
    .hero-card {
        max-width: 280px;
        margin: 0 auto;
        padding: 1rem;
    }
    
    .contact-info-home h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-info-home .phone {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-info-home .email {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
}

/* Mobile Extra Small (320px - 359px) */
@media (max-width: 359px) {
    .hero {
        min-height: 80vh;
        padding-top: 50px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .btn {
        width: 100%;
        max-width: 220px;
        padding: 10px 16px;
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .overview-card {
        padding: 0.8rem;
        text-align: center;
    }
    
    .overview-card i {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .overview-card h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .overview-card p {
        font-size: 0.75rem;
        margin-bottom: 0.7rem;
        line-height: 1.2;
    }
    
    .overview-card .btn {
        max-width: 160px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    
    .hero-card {
        max-width: 260px;
        margin: 0 auto;
        padding: 0.8rem;
    }
    
    .contact-info-home h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-home .phone {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-info-home .email {
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 0.8rem;
    }
}

/* Enhanced Footer Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        color: #666;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: #4682A9;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 0 0.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: #4682A9;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #749BC2;
    text-decoration: underline;
}

.breadcrumb-item a[aria-current="page"] {
    color: #6c757d;
    font-weight: 500;
    text-decoration: none;
}

.breadcrumb-item a[aria-current="page"]:hover {
    text-decoration: none;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
.nav-link:focus,
.btn:focus,
.hamburger:focus {
    outline: 2px solid #4682A9;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #4682A9;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Mobile breadcrumb adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.25rem 0;
    }
    
    .breadcrumb-list {
        padding: 0 15px;
    }
    
    .breadcrumb-item a {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 0.25rem;
        font-size: 0.8rem;
    }
}

/* SEO Content Section */
.seo-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.content-text h2 {
    color: #2c5aa0;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-text h3 {
    color: #4682A9;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 500;
}

.content-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.content-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.content-text li {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.content-text strong {
    color: #2c5aa0;
    font-weight: 600;
}

.content-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.highlight-box h4 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-box p {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.highlight-box li {
    color: #333;
    padding: 0.3rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.highlight-box li:last-child {
    border-bottom: none;
}

.highlight-box .btn {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

/* Responsive Design for SEO Content */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .content-text h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .seo-content {
        padding: 3rem 0;
    }
    
    .content-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .content-text h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .content-text p,
    .content-text li {
        font-size: 0.95rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .highlight-box h4 {
        font-size: 1.2rem;
    }
    
    .highlight-box p,
    .highlight-box li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .seo-content {
        padding: 2rem 0;
    }
    
    .content-text h2 {
        font-size: 1.6rem;
    }
    
    .content-text h3 {
        font-size: 1.2rem;
    }
    
    .content-text p,
    .content-text li {
        font-size: 0.9rem;
    }
    
    .highlight-box {
        padding: 1.2rem;
    }
    
    .highlight-box h4 {
        font-size: 1.1rem;
    }
    
    .highlight-box p,
    .highlight-box li {
        font-size: 0.85rem;
    }
}

/* Blog Page Specific Styles */
.blog-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.blog-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Featured Blog Post */
.blog-post.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(70, 130, 169, 0.1);
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.blog-post.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4682A9, #749BC2, #91C8E4);
}

.blog-post.featured .post-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4682A9 0%, #749BC2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(70, 130, 169, 0.3);
}

.blog-post.featured .post-image i {
    font-size: 2rem;
    color: white;
}

.blog-post.featured h2 {
    font-size: 2.2rem;
    color: #4682A9;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
}

.blog-post.featured .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-post.featured .post-date,
.blog-post.featured .post-category {
    background: rgba(70, 130, 169, 0.1);
    color: #4682A9;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(70, 130, 169, 0.2);
}

.blog-post.featured .post-category {
    background: #4682A9;
    color: white;
    border-color: #4682A9;
}

.blog-post.featured p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.blog-post.featured h3 {
    color: #4682A9;
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.blog-post.featured ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-post.featured li {
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.blog-post.featured li strong {
    color: #4682A9;
    font-weight: 600;
}

.blog-post.featured .post-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.blog-post.featured .post-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post.featured .post-cta .btn-primary {
    background: linear-gradient(135deg, #4682A9 0%, #749BC2 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(70, 130, 169, 0.3);
}

.blog-post.featured .post-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 130, 169, 0.4);
}

.blog-post.featured .post-cta .btn-secondary {
    background: transparent;
    color: #4682A9;
    border: 2px solid #4682A9;
}

.blog-post.featured .post-cta .btn-secondary:hover {
    background: #4682A9;
    color: white;
    transform: translateY(-2px);
}

/* Regular Blog Posts */
.blog-post:not(.featured) {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(70, 130, 169, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-post:not(.featured)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #4682A9, #749BC2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post:not(.featured):hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(70, 130, 169, 0.15);
}

.blog-post:not(.featured):hover::before {
    opacity: 1;
}

.blog-post:not(.featured) .post-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #749BC2 0%, #91C8E4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(116, 155, 194, 0.3);
}

.blog-post:not(.featured) .post-image i {
    font-size: 1.5rem;
    color: white;
}

.blog-post:not(.featured) h3 {
    color: #4682A9;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-post:not(.featured) .post-meta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-post:not(.featured) .post-date,
.blog-post:not(.featured) .post-category {
    background: rgba(70, 130, 169, 0.08);
    color: #4682A9;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-post:not(.featured) .post-category {
    background: rgba(116, 155, 194, 0.2);
    color: #4682A9;
}

.blog-post:not(.featured) p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.blog-post:not(.featured) .read-more {
    color: #4682A9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-post:not(.featured) .read-more:hover {
    color: #749BC2;
    transform: translateX(5px);
}

.blog-post:not(.featured) .read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-post:not(.featured) .read-more:hover::after {
    transform: translateX(3px);
}

/* Blog Sidebar */
.blog-sidebar {
    width: 100%;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(70, 130, 169, 0.1);
}

.sidebar-widget h3 {
    color: #4682A9;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #4682A9, #749BC2);
    border-radius: 2px;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.contact-info p i {
    color: #4682A9;
    width: 16px;
    text-align: center;
}

.sidebar-widget .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.services-list li {
    color: #555;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(70, 130, 169, 0.1);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li i {
    color: #4682A9;
    width: 16px;
    text-align: center;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(70, 130, 169, 0.1);
}

.recent-posts li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-posts li a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
}

.recent-posts li a:hover {
    color: #4682A9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-content .container {
        grid-template-columns: 1fr 280px;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .blog-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
        order: -1;
    }
    
    .blog-post.featured {
        padding: 2.5rem;
    }
    
    .blog-post.featured h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .blog-content {
        padding: 2rem 0;
    }
    
    .blog-grid {
        gap: 2rem;
    }
    
    .blog-post.featured {
        padding: 2rem;
    }
    
    .blog-post.featured h2 {
        font-size: 1.6rem;
    }
    
    .blog-post.featured .post-cta {
        flex-direction: column;
    }
    
    .blog-post.featured .post-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .blog-post:not(.featured) {
        padding: 1.5rem;
    }
    
    .blog-post:not(.featured) h3 {
        font-size: 1.2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .blog-post.featured .post-meta,
    .blog-post:not(.featured) .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-content {
        padding: 1.5rem 0;
    }
    
    .blog-post.featured {
        padding: 1.5rem;
    }
    
    .blog-post.featured h2 {
        font-size: 1.4rem;
    }
    
    .blog-post:not(.featured) {
        padding: 1.2rem;
    }
    
    .blog-post:not(.featured) h3 {
        font-size: 1.1rem;
    }
    
    .sidebar-widget {
        padding: 1.2rem;
    }
    
    .sidebar-widget h3 {
        font-size: 1.2rem;
    }
}

/* Animation for blog posts */
.blog-post {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better interactivity */
.blog-post:not(.featured):hover .post-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(70, 130, 169, 0.15);
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.blog-post:focus-within,
.sidebar-widget:focus-within {
    outline: 2px solid #4682A9;
    outline-offset: 2px;
}

.read-more:focus {
    outline: 2px solid #4682A9;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Additional Blog Enhancements */
.blog-content {
    position: relative;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, rgba(70, 130, 169, 0.05) 0%, rgba(116, 155, 194, 0.05) 100%);
    z-index: -1;
}

/* Improved typography for blog posts */
.blog-post.featured h2 {
    background: linear-gradient(135deg, #4682A9, #749BC2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(70, 130, 169, 0.1);
}

.blog-post:not(.featured) h3 {
    position: relative;
    padding-left: 1rem;
}

.blog-post:not(.featured) h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #4682A9, #749BC2);
    border-radius: 2px;
}

/* Enhanced post meta styling */
.post-meta {
    position: relative;
}

.post-meta .post-date {
    position: relative;
    overflow: hidden;
}

.post-meta .post-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.post-meta .post-date:hover::before {
    left: 100%;
}

/* Improved button styling */
.blog-post.featured .post-cta .btn {
    position: relative;
    overflow: hidden;
}

.blog-post.featured .post-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.blog-post.featured .post-cta .btn:hover::before {
    left: 100%;
}

/* Sidebar enhancements */
.sidebar-widget {
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4682A9, #749BC2, #91C8E4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sidebar-widget:hover::before {
    transform: scaleX(1);
}

/* Enhanced contact info */
.contact-info p {
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.contact-info p:hover {
    background: rgba(70, 130, 169, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
}

.contact-info p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info p a:hover {
    color: #4682A9;
}

/* Services list enhancements */
.services-list li {
    position: relative;
    transition: all 0.3s ease;
}

.services-list li:hover {
    background: rgba(70, 130, 169, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
    transform: translateX(5px);
}

.services-list li i {
    transition: transform 0.3s ease;
}

.services-list li:hover i {
    transform: scale(1.2);
}

/* Recent posts enhancements */
.recent-posts li a {
    position: relative;
    transition: all 0.3s ease;
}

.recent-posts li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4682A9, #749BC2);
    transition: width 0.3s ease;
}

.recent-posts li a:hover::before {
    width: 100%;
}

/* Loading animation for blog posts */
.blog-post {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.2s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }
.blog-post:nth-child(4) { animation-delay: 0.4s; }
.blog-post:nth-child(5) { animation-delay: 0.5s; }
.blog-post:nth-child(6) { animation-delay: 0.6s; }

/* Sidebar animation */
.sidebar-widget {
    opacity: 0;
    animation: slideInRight 0.8s ease-out forwards;
}

.sidebar-widget:nth-child(1) { animation-delay: 0.3s; }
.sidebar-widget:nth-child(2) { animation-delay: 0.4s; }
.sidebar-widget:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Focus improvements for accessibility */
.blog-post:focus-within {
    outline: 3px solid #4682A9;
    outline-offset: 3px;
    border-radius: 15px;
}

.sidebar-widget:focus-within {
    outline: 3px solid #4682A9;
    outline-offset: 3px;
    border-radius: 15px;
}

/* Print styles for blog */
@media print {
    .blog-content {
        background: white !important;
    }
    
    .blog-post {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .blog-sidebar {
        display: none;
    }
    
    .blog-content .container {
        grid-template-columns: 1fr !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .blog-post {
        border: 2px solid #000;
    }
    
    .blog-post.featured {
        border: 3px solid #000;
    }
    
    .sidebar-widget {
        border: 2px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .blog-post,
    .sidebar-widget {
        animation: none;
    }
    
    .blog-post:hover,
    .sidebar-widget:hover {
        transform: none;
    }
    
    .post-meta .post-date::before,
    .blog-post.featured .post-cta .btn::before {
        display: none;
    }
}

/* Blog Page Text Alignment & Appearance Fixes */

.blog-content,
.blog-content .container,
.blog-grid,
.blog-post,
.sidebar-widget,
.post-content,
.post-header,
.post-body,
.post-footer,
.post-meta,
.services-list,
.recent-posts {
    text-align: left !important;
}

.blog-post.featured h2,
.blog-post:not(.featured) h3,
.sidebar-widget h3 {
    text-align: left !important;
}

.blog-post .post-meta,
.blog-post .post-body,
.blog-post .post-footer {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.blog-post .post-meta {
    margin-bottom: 1.2rem;
}

.blog-post .post-body p,
.blog-post .post-body ul,
.blog-post .post-body li {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.1rem;
    text-align: left !important;
}

.blog-post .post-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.blog-post .post-body li {
    margin-bottom: 0.7rem;
}

.blog-post .post-header h2,
.blog-post .post-header h3 {
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.blog-post .post-header h2 {
    font-size: 2rem;
}

.blog-post .post-header h3 {
    font-size: 1.3rem;
}

.sidebar-widget h3 {
    margin-bottom: 1.1rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.sidebar-widget ul,
.sidebar-widget .contact-info {
    margin-bottom: 1.1rem;
}

.sidebar-widget li,
.sidebar-widget p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.7rem;
    text-align: left !important;
}

.sidebar-widget li:last-child,
.sidebar-widget p:last-child {
    margin-bottom: 0;
}

/* Ensure sidebar and main content are visually balanced */
.blog-content .container {
    align-items: flex-start;
}

/* Responsive adjustments for mobile */
@media (max-width: 992px) {
    .blog-content .container {
        flex-direction: column;
        align-items: stretch;
    }
    .blog-grid, .sidebar-widget {
        text-align: left !important;
    }
}

@media (max-width: 600px) {
    .blog-post .post-header h2 {
        font-size: 1.3rem;
    }
    .blog-post .post-header h3 {
        font-size: 1.1rem;
    }
    .sidebar-widget h3 {
        font-size: 1rem;
    }
    .blog-post .post-body p,
    .blog-post .post-body ul,
    .blog-post .post-body li,
    .sidebar-widget li,
    .sidebar-widget p {
        font-size: 0.97rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Review Form Styles */
.review-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(70, 130, 169, 0.1);
    border: 1px solid rgba(70, 130, 169, 0.1);
    position: relative;
    overflow: hidden;
}

.review-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4682A9, #749BC2, #91C8E4);
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-form .form-group {
    margin-bottom: 1.5rem;
}

.review-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #4682A9;
    font-size: 1rem;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(70, 130, 169, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #4682A9;
    background: white;
    box-shadow: 0 0 0 3px rgba(70, 130, 169, 0.1);
}

.review-form input:invalid:not(:placeholder-shown),
.review-form textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.review-form input:valid:not(:placeholder-shown),
.review-form textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
}

/* Star Rating Styles */
.rating-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0.25rem;
    border-radius: 4px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #ffd700;
    transform: scale(1.1);
}

.star-rating label:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Textarea specific styles */
.review-form textarea {
    resize: vertical;
    min-height: 120px;
}

.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.character-counter {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Checkbox Styles */
.review-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0;
}

.review-form .checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(70, 130, 169, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.review-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #4682A9;
    border-color: #4682A9;
}

.review-form .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #4682A9 0%, #749BC2 100%);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(70, 130, 169, 0.3);
}

.form-actions .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 130, 169, 0.4);
}

.form-actions .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-actions .btn-secondary {
    background: transparent;
    color: #4682A9;
    border: 2px solid #4682A9;
}

.form-actions .btn-secondary:hover {
    background: #4682A9;
    color: white;
    transform: translateY(-2px);
}

/* Error Messages */
.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    min-height: 1.2rem;
}

.error-message:empty {
    display: none;
}

/* Success and Error Containers */
.success-message,
.error-message-container {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.success-message {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.error-message-container {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.success-message i,
.error-message-container i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.success-message h3,
.error-message-container h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.success-message p,
.error-message-container p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Reviews Display */
.reviews-display {
    flex: 1;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 950px;
    display: flex;
    flex-direction: column;
}

.reviews-display h3 {
    margin: 0 0 1.5rem 0;
    color: #2c5aa0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    padding-right: 10px;
    flex: 1;
    max-height: calc(100% - 80px);
}

.reviews-grid::-webkit-scrollbar {
    width: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.reviews-grid::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Review Cards */
.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #4682A9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(70, 130, 169, 0.15);
    background: white;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: #4682A9;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-rating .stars {
    color: #ffd700;
    font-size: 1rem;
}

.review-rating .rating-number {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.review-date {
    color: #888;
    font-size: 0.85rem;
    font-weight: 500;
}

.review-content h5 {
    color: #4682A9;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.review-content p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .reviews-content {
        gap: 3rem;
    }

    .review-form-container,
    .reviews-display {
        padding: 2.5rem;
    }
    
    .reviews-display {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reviews-section {
        padding: 4rem 0;
    }
    
    .reviews-display {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .review-form-container,
    .reviews-display {
        padding: 2rem;
    }
    
    .reviews-display {
        height: 450px;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .star-rating label {
        font-size: 1.8rem;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .review-form-container,
    .reviews-display {
        padding: 1.5rem;
    }
    
    .reviews-display {
        height: 400px;
    }
    
    .reviews-display h3 {
        font-size: 1.5rem;
    }
    
    .star-rating label {
        font-size: 1.6rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .success-message i,
    .error-message-container i {
        font-size: 2.5rem;
    }
    
    .success-message h3,
    .error-message-container h3 {
        font-size: 1.3rem;
    }
}