@media screen and (max-width: 380px) {
    body {
        display: none;
    }
}

@media print {
    body {
        display: none;
    }
}

*{
    body {
        user-select: none;
    }
}

/* Base Styles and Variables */
:root {
    /* Base Palette */
    --primary: #ff3131;
    --white: #ffffff;

    /* Fonts */
    --font-display: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Border Radius */
    --rounded-default: 0.25rem;
    --rounded-lg: 0.5rem;
    --rounded-xl: 0.75rem;
    --rounded-full: 9999px;
}

/* Theme Variables - Light Mode (Default) */
:root,
.light {
    --bg-background: #f6f7f8;
    --bg-surface: #ffffff;
    --text-primary: #111518;
    --text-secondary: #617989;
    --border-color: #e5e7eb;
    /* gray-200 */
    --header-bg: rgba(246, 247, 248, 0.8);
    --header-border: rgba(229, 231, 235, 0.8);

    /* Extra colors used in UI */
    --gray-50: #f9fafb;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --slate-100: #f1f5f9;
}

/* Theme Variables - Dark Mode */
.dark {
    --bg-background: #101a22;
    --bg-surface: #182430;
    --text-primary: #f0f3f4;
    --text-secondary: #a0b3c2;
    --border-color: #374151;
    /* gray-700 */
    --header-bg: rgba(16, 26, 34, 0.8);
    --header-border: rgba(55, 65, 81, 0.8);

    /* Dark mode overrides */
    --gray-50: #182430;
    /* surface-dark */
    --gray-200: #1f2937;
    /* gray-800 */
    --gray-300: #374151;
    /* gray-700 */
    --red-50: rgba(127, 29, 29, 0.1);
    /* red-900/10 */
    --red-100: rgba(127, 29, 29, 0.3);
    --slate-100: #182430;
}

/* Reset and Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-display);
}

body {
    background-color: var(--bg-background);
    color: var(--text-primary);
    line-height: 1.5;
}

/* Layout Containers */
.app-container {
    position: relative;
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
    overflow-x: hidden;
}

.layout-container {
    display: flex;
    height: 100%;
    flex-grow: 1;
    flex-direction: column;
}

/* Common Utilities */
.hidden {
    display: none;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}


/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* white-space: nowrap; */
    background-color: rgba(255, 255, 255, 0.318);
    backdrop-filter: blur(20px);
    padding: 5px;
}

@media (min-width: 640px) {
    .site-header {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .site-header {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-logo {
    height: 35px;
    width: 35px;
}

@media (min-width: 480px) {
    .header-logo {
        height: 45px;
        width: 45px;
    }
}

@media (min-width: 768px) {
    .header-logo {
        height: 50px;
        width: 50px;
    }
}

.header-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 700;
}

@media (min-width: 480px) {
    .header-title {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .header-title {
        font-size: 1.125rem;
    }
}

.site-nav {
    display: none;
}

.nav-link {
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.15s ease-in-out;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

@media (min-width: 480px) {
    .header-actions {
        gap: 0.5rem;
    }
}

.btn-primary {
    display: flex;
    min-width: 60px;
    max-width: 480px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--rounded-lg);
    height: 2rem;
    padding: 0 0.5rem;
    background-color: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.015em;
    transition: background-color 0.15s;
    text-decoration: none;
    border: none;
}

@media (min-width: 480px) {
    .btn-primary {
        min-width: 84px;
        height: 2.5rem;
        padding: 0 0.75rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .btn-primary {
        padding: 0 1rem;
    }
}

.btn-primary:hover {
    background-color: rgba(255, 49, 49, 0.9);
}

.btn-secondary {
    display: flex;
    min-width: 50px;
    max-width: 480px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--rounded-lg);
    height: 2rem;
    padding: 0 0.5rem;
    background-color: var(--gray-200);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.015em;
    transition: background-color 0.15s;
    border: none;
}

@media (min-width: 480px) {
    .btn-secondary {
        min-width: 70px;
        height: 2.5rem;
        padding: 0 0.75rem;
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .btn-secondary {
        padding: 0 1rem;
        min-width: 84px;
    }
}

.btn-secondary:hover {
    background-color: var(--gray-300);
}

.btn-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-primary);
}

@media (min-width: 480px) {
    .btn-menu {
        height: 2.5rem;
        width: 2.5rem;
    }
}

.btn-menu:hover {
    color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 280px;
    max-width: 85%;
    background-color: var(--bg-surface);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-primary);
    transition: color 0.15s;
}

.mobile-menu-close:hover {
    color: var(--primary);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-nav-link {
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background-color: var(--gray-50);
    border-left-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    width: 100%;
    margin-top: 60px;
}

.hero-container {
    padding: 1rem;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 2rem;
    }
}

.hero-content {
    display: flex;
    min-height: 60vh;
    flex-direction: column;
    gap: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--rounded-xl);
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

@media (min-width: 768px) {
    .hero-content {
        min-height: 70vh;
    }
}

@media (min-width: 480px) {
    .hero-content {
        gap: 2rem;
    }
}

.hero-title {
    font-family: var(--font-heading);
    color: white;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.033em;
    max-width: 48rem;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-red {
    color: var(--primary);
    font-style: italic;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    /* font-weight: 400; */
    line-height: 1.5;
}

@media (min-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.btn-hero {
    display: flex;
    min-width: 84px;
    max-width: 480px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--rounded-lg);
    height: 2.5rem;
    padding: 0 1rem;
    background-color: black;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.015em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero:hover {
    background-color: rgb(106, 255, 0);
    /* background-color: var(--primary); */
    color: black;
}

@media (min-width: 480px) {
    .btn-hero {
        height: 3rem;
        padding: 0 1.25rem;
        font-size: 1rem;
    }
}

/* Sections Common */
.section-standard {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    background-color: var(--bg-background);
}

@media (min-width: 640px) {
    .section-standard {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-standard {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 2.25rem;
        font-weight: 900;
        letter-spacing: -0.033em;
    }
}

.section-description {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625;
    max-width: 48rem;
}

/* About Section */
.about-container {
    max-width: 56rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card-vision {
    display: flex;
    flex: 1;
    gap: 1rem;
    border-radius: var(--rounded-lg);
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-icon {
    color: var(--primary);
    font-size: 2.25rem;
}

.card-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.25;
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Indices Section */
.section-indices {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--red-50);
}

.indices-container {
    max-width: 56rem;
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .indices-container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .indices-container {
        padding: 0 2.5rem;
    }
}

.indices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .indices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.index-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

.index-number {
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 700;
}

.index-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Services Section */
.services-container {
    max-width: 72rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    display: flex;
    flex: 1;
    gap: 0.75rem;
    border-radius: var(--rounded-lg);
    border: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    padding: 1rem;
    flex-direction: column;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.service-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.service-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Gallery Section */
.section-alt {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    background-color: var(--gray-50);
}

@media (min-width: 640px) {
    .section-alt {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-alt {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.gallery-container {
    max-width: 72rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    row-gap: 40px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background-color: var(--gray-200);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); */
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Section */
.blog-container {
    max-width: 72rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    row-gap: 60px;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background-color: white;
    border-radius: var(--rounded-lg);
}

.blog-thumbnail {
    aspect-ratio: 16 / 9;
    border-radius: var(--rounded-lg);
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 20px 15px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.blog-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.blog-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    /* padding: 0.75rem 2rem; */
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--rounded-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1.5rem auto 0;
    min-width: 200px;
}

.more-btn:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 49, 49, 0.2);
}

.more-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(255, 49, 49, 0.15);
}

.arrow{
    font-size: 20px;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-container {
    max-width: 56rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.testimonial-slider-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .testimonial-slider-wrapper {
        gap: 0.5rem;
    }
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--bg-surface);
    padding: 2rem;
    border-radius: var(--rounded-xl);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--red-100);
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .testimonial-text {
        font-size: 0.875rem;
    }
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1.5rem;
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .testimonial-role {
        font-size: 0.75rem;
    }
}

/* Navigation Buttons */
.testimonial-nav-btn {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .testimonial-nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-nav-btn {
        width: 2rem;
        height: 2rem;
    }
    
    .testimonial-nav-btn .material-symbols-outlined {
        font-size: 1.25rem;
    }
}

.testimonial-nav-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-nav-btn:disabled:hover {
    background-color: var(--bg-surface);
    color: var(--text-primary);
    border-color: var(--border-color);
    transform: scale(1);
}

/* Pagination Dots */
.testimonial-dots {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background-color: var(--text-secondary);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background-color: var(--primary);
    width: 14px;
    height: 14px;
}

/* FAQ Section */
.faq-container {
    max-width: 56rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1rem;
    border-radius: var(--rounded-lg);
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    transition: transform 0.2s;
}

details[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Footer */
.section-contact {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    background-color: var(--slate-100);
}

@media (min-width: 640px) {
    .section-contact {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-contact {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.contact-grid {
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    row-gap: 100px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Contact Columns */
.col-contact {
    grid-column: span 1;
}

.col-form {
    grid-column: span 1;
}

.col-map {
    grid-column: span 1;
    min-height: 300px;
    border-radius: var(--rounded-lg);
    overflow: hidden;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.map-iframe {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.875rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.contact-text {
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 500;
}

.contact-text strong {
    color: var(--text-primary);
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s;
}

.contact-link:hover {
    color: var(--primary);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    row-gap: 25px;
}

.form-input,
.form-textarea {
    width: 100%;
    border-radius: var(--rounded-default);
    border: 1px solid var(--gray-300);
    background-color: var(--bg-surface);
    padding: 8px 16px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 16px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.form-textarea {
    height: 200px;
    resize: vertical;
}

.form-buttons {
    display: flex;
    gap: 15px;
}

.btn-submit {
    width: 100%;
    border-radius: var(--rounded-default);
    padding: 10px 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background-color: #26d367;
    color: black;
}

.btn-email {
    background-color: rgb(0, 98, 255);
    color: white;
}

.btn-submit:hover {
    background-color: black;
    color: white;
}


/* Map */
.col-map iframe {
    border-radius: var(--rounded-lg);
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

/* Footer */
.section-footer {
    width: 100%;
    background-color: black;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 13px;
    color: white;
}

.section-footer a {
    text-decoration: none;
    font-weight: 500;
}

.section-footer a:hover {
    text-decoration: underline;
}

.dev_link {
    color: #FF8C00;
}

.member_link {
    color: #ffc107;
}

/* Appointment Modal Styles */
.appointment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.appointment-modal.active {
    pointer-events: auto;
    opacity: 1;
}

.appointment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.appointment-modal.active .appointment-modal-overlay {
    opacity: 1;
}

.appointment-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background-color: var(--bg-surface);
    border-radius: var(--rounded-xl);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.appointment-modal.active .appointment-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.appointment-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    background-color: var(--bg-surface);
    z-index: 10;
}

.appointment-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.appointment-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.2s;
    border-radius: 50%;
}

.appointment-modal-close:hover {
    background-color: var(--gray-200);
    color: var(--primary);
}

.appointment-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-label .required {
    color: var(--primary);
    margin-left: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.appointment-form .form-input,
.appointment-form .form-textarea {
    width: 100%;
    border-radius: var(--rounded-default);
    border: 2px solid var(--gray-300);
    background-color: var(--bg-surface);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.appointment-form .form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.appointment-form .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
}

.appointment-form .form-input:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
}

.appointment-form .form-input:valid:not(:placeholder-shown) {
    border-color: #16a34a;
}

.appointment-form .btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.appointment-form .btn-submit:disabled:hover {
    background-color: #26d367;
    color: black;
}

.appointment-form .btn-email:disabled:hover {
    background-color: rgb(0, 98, 255);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .appointment-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .appointment-modal-header {
        padding: 1rem;
    }

    .appointment-modal-title {
        font-size: 1.25rem;
    }

    .appointment-form {
        padding: 1rem;
    }

    .form-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
}