/* ==================== Root & General Styles ==================== */
:root {
    --primary-color: #00a8cc;
    --secondary-color: #005f73;
    --accent-color: #00d4ff;
    --success-color: #06d6a0;
    --light-bg: #f0f9ff;
    --dark-text: #1a1a2e;
    --light-text: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 168, 204, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 87, 115, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-color: #ffffff;
    line-height: 1.6;
}

/* ==================== Navigation ==================== */
.navbar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    color: var(--light-text);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--light-text);
    box-shadow: 0 15px 40px rgba(0, 168, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 168, 204, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--success-color) 0%, #00a878 100%);
    color: var(--light-text);
    box-shadow: 0 15px 40px rgba(6, 214, 160, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(6, 214, 160, 0.4);
}

/* ==================== Container & Layout ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== Splash Section ==================== */
/* ==================== Splash Section ==================== */
.splash {
    width: 100%;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f9ff 100%);
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.splash::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 204, 0.25) 50%, transparent 100%);
}

.splash-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 87, 115, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    animation: fadeInDown 0.8s ease;
}

.splash-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 168, 204, 0.25);
}

/* ==================== Hero Section ==================== */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: var(--light-text);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.98;
    animation: fadeInUp 0.8s ease;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero .btn {
    animation: fadeInUp 1s ease;
}

/* ==================== Location Selection ==================== */
.location-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.location-btn {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(0, 87, 115, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-btn:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 168, 204, 0.35);
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.location-btn:hover .location-img {
    transform: scale(1.08);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 2.5rem 1.5rem;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.location-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 168, 204, 0.4);
}

.location-btn:hover .location-img {
    transform: scale(1.05);
}

.location-name {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

.location-address {
    color: var(--light-text);
    font-size: 0.85rem;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    margin-top: 0.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.payment-icons svg {
    color: var(--accent-color);
    stroke: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.payment-icons svg:hover {
    transform: scale(1.2);
}

.payment-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

.payment-label {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ==================== Page Header ==================== */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--light-text);
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==================== Features Section ==================== */
.features {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #e8f7ff 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 204, 0.3) 50%, transparent 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 87, 115, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0, 168, 204, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 168, 204, 0.2);
    border-color: rgba(0, 168, 204, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== Services Section ==================== */
.services {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    position: relative;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 168, 204, 0.3) 50%, transparent 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 168, 204, 0.1);
    border-left: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
    transition: right 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.service-item:hover {
    box-shadow: 0 20px 60px rgba(0, 168, 204, 0.15);
    transform: translateX(8px) translateY(-5px);
    border-color: rgba(0, 168, 204, 0.2);
}

.service-item:hover::before {
    right: 100%;
}

.service-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.service-item p {
    color: #555;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ==================== CTA Section ==================== */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: var(--light-text);
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    font-weight: 300;
}

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

.cta .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
}

.cta .btn-primary {
    background: white;
    color: var(--secondary-color);
}

/* ==================== Contact Section ==================== */
.contact-section {
    padding: 4rem 2rem;
    background-color: var(--light-bg);
}

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

.contact-info h2,
.contact-form h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #555;
    line-height: 1.8;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.address-link {
    display: inline-block;
    line-height: 1.6;
}

/* ==================== Forms ==================== */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
    background-color: rgba(0, 212, 255, 0.02);
}

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

.error-message {
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    display: none;
    font-weight: 600;
}

.form-message.success {
    background-color: rgba(6, 214, 160, 0.1);
    color: var(--success-color);
    border: 2px solid var(--success-color);
    display: block;
}

.form-message.error {
    background-color: rgba(211, 47, 47, 0.1);
    color: #d32f2f;
    border: 2px solid #d32f2f;
    display: block;
}

/* ==================== Location Section ==================== */
.location-section {
    padding: 4rem 2rem;
    background-color: white;
}

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

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-info h2 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f7ff 100%);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.detail-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.detail-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.detail-text {
    color: #555;
    line-height: 1.8;
}

.detail-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.detail-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cta-section {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-section .btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
}

/* ==================== Footer ==================== */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #003d4d 100%);
    color: var(--light-text);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

footer p {
    opacity: 0.95;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* ==================== Animations ==================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(0, -40px);
    }
    75% {
        transform: translate(-20px, -20px);
    }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .location-btn {
        padding: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .features h2,
    .services h2,
    .cta h2 {
        font-size: 1.6rem;
    }

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

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

    .contact-info,
    .contact-form {
        width: 100%;
    }

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

    .location-map {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta .btn {
        width: 100%;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-item {
        padding: 1rem;
    }

    .detail-item {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .payment-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .payment-info > div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 0.6rem;
        text-align: center;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .features,
    .services {
        padding: 2rem 1rem;
    }

    .contact-section,
    .location-section {
        padding: 2rem 1rem;
    }

    .cta {
        padding: 2rem 1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ==================== Utility Classes ==================== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

/* ==================== Locations Section (New Location Page) ==================== */
.locations-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 87, 115, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 168, 204, 0.25);
    border-color: var(--accent-color);
}

.location-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-card-header h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    width: fit-content;
}

.location-card-body {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.location-card-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--dark-text);
    line-height: 1.5;
    font-size: 0.95rem;
}

.location-card-map {
    flex-shrink: 0;
}

.location-card-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.detail-value {
    color: var(--dark-text);
    line-height: 1.5;
    font-size: 0.95rem;
}

.location-card-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.learn-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.location-card:hover .learn-more {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* ==================== Responsive - Locations Section ==================== */
@media (max-width: 768px) {
    .locations-section {
        padding: 2rem 1rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .location-card-header h2 {
        font-size: 1.5rem;
    }

    .location-card-body {
        flex-direction: column;
        gap: 1rem;
    }

    .location-card-details {
        width: 100%;
    }

    .location-card-map {
        width: 100%;
    }

    .location-card-map iframe {
        width: 100% !important;
        height: 250px !important;
    }

    .detail-label,
    .detail-value {
        font-size: 0.9rem;
    }

    .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}
