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

/* Screen Reader Only - Hide visually but keep for SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:root {
    --primary: #AB000D;
    --primary-dark: #8B0009;
    --primary-light: #CB0010;
    --orange: #ea580c;
    --orange-dark: #c2410c;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Prompt', sans-serif;
    background-color: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
}

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

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

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
}

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

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

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

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    gap: 1rem;
}

@media (min-width: 640px) {
    .nav-content {
        height: 5rem;
        gap: 1.5rem;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

@media (min-width: 640px) {
    .logo-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.logo-text {
    margin-left: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

@media (min-width: 640px) {
    .logo-text {
        margin-left: 0.75rem;
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .logo-text {
        font-size: 1.5rem;
    }
}

.logo-text-accent {
    color: var(--primary);
}

.nav-menu {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        gap: 2rem;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.nav-lang-switch {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: #374151;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
}

.nav-link-button {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

@media (min-width: 1024px) {
    .nav-link-button {
        padding: 0.5rem 1.5rem;
    }
}

.nav-link-button:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.mobile-menu-btn {
    display: block;
    color: var(--gray-700);
    background: none;
    border: none;
    cursor: pointer;
}

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

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Scroll margin for all sections with IDs - ensures proper scroll positioning */
/* Increased values to ensure section headers are fully visible */
section[id] {
    scroll-margin-top: 120px;
    padding-top: 2rem; /* Extra padding to ensure header visibility */
}

/* Extra scroll margin for sections that need more space */
section[id="about"] {
    scroll-margin-top: 140px;
    padding-top: 2.5rem;
}

section[id="services"] {
    scroll-margin-top: 130px;
    padding-top: 2.5rem;
}

section[id="products"] {
    scroll-margin-top: 130px;
    padding-top: 2.5rem;
}

section[id="projects"] {
    scroll-margin-top: 130px;
    padding-top: 2.5rem;
}

section[id="contact"] {
    scroll-margin-top: 140px;
    padding-top: 3rem;
}

section[id="home"] {
    scroll-margin-top: 0px;
    padding-top: 0;
}

/* Hero Section */
.hero-section {
    padding-top: 4rem;
}

@media (min-width: 640px) {
    .hero-section {
        padding-top: 5rem;
    }
}

.hero-video-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: var(--gray-900);
}

@media (min-width: 640px) {
    .hero-video-container {
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero-video-container {
        height: 700px;
    }
}

.video-banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.video-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;          /* เติมเต็มกรอบแบบไม่บีบสัดส่วน */
    object-position: center;    /* จัดตำแหน่งให้อยู่กึ่งกลางพอดี */
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* ถ้าวิดีโอโหลดไม่ได้ จะแสดง fallback image */
.video-banner video[poster] {
    background-size: cover;
    background-position: center;
}

.video-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(127, 29, 29, 0.5), rgba(124, 45, 18, 0.4));
    z-index: 2;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

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

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

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

.hero-text-container > div {
    max-width: 48rem;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-accent {
    color: #fb923c;
}

.hero-description {
    font-size: 1rem;
    color: var(--gray-100);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--gray-900);
}

.btn-secondary:hover {
    background-color: var(--gray-100);
}

.btn-full {
    width: 100%;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

@media (min-width: 640px) {
    .stats-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .stats-section {
        padding: 1rem 0;
    }
}

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

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.stat-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

@media (min-width: 640px) {
    .stat-card {
        padding: 2rem;
    }
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

@media (min-width: 640px) {
    .stat-icon {
        width: 4rem;
        height: 4rem;
    }
}

.stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

@media (min-width: 640px) {
    .stat-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.stat-icon-red {
    background-color: #fee2e2;
}

.stat-icon-red svg {
    color: var(--primary);
}

.stat-icon-orange {
    background-color: #ffedd5;
}

.stat-icon-orange svg {
    color: var(--orange);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 1.875rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1rem;
    }
}

.section-header {
    text-align: center;
    margin-top: 2rem; /* Extra top margin to ensure visibility below navbar */
    margin-bottom: 3rem; /* Increased bottom margin for better spacing */
}

@media (min-width: 640px) {
    .section-header {
        margin-top: 2.5rem;
        margin-bottom: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-top: -3rem;
        margin-bottom: 4rem;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 56rem;
    margin: 0 auto 0.25rem;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .section-description {
        font-size: 1.25rem;
    }
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background-color: var(--white);
}

@media (min-width: 640px) {
    .services-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 5rem 0;
    }
}

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

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

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

.service-card {
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

@media (min-width: 640px) {
    .service-card {
        padding: 1.25rem;
    }
}

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

.service-card-red {
    background: linear-gradient(to bottom right, #fef2f2, #fff7ed);
}

.service-card-orange {
    background: linear-gradient(to bottom right, #fff7ed, #fef2f2);
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .service-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }
}

.service-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

@media (min-width: 640px) {
    .service-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.service-icon-red {
    background-color: var(--primary);
}

.service-icon-orange {
    background-color: var(--orange);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

.service-description {
    font-size: 0.8125rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .service-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .service-features {
        gap: 0.75rem;
    }
}

.service-feature {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--gray-700);
}

@media (min-width: 640px) {
    .service-feature {
        font-size: 1rem;
    }
}

.service-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.service-card-orange .service-feature svg {
    color: var(--orange);
}

/* Products Section */
.products-section {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

@media (min-width: 640px) {
    .products-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .products-section {
        padding: 5rem 0;
    }
}

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

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.product-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

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

.product-image-container {
    height: 12rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .product-image-container {
        height: 14rem;
    }
}

@media (min-width: 1024px) {
    .product-image-container {
        height: 16rem;
    }
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-content {
    padding: 1.25rem;
}

@media (min-width: 640px) {
    .product-content {
        padding: 1.5rem;
    }
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .product-header {
        margin-bottom: 1rem;
    }
}

.product-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

@media (min-width: 640px) {
    .product-badge {
        font-size: 0.875rem;
    }
}

.product-badge-red {
    background-color: #fee2e2;
    color: var(--primary);
}

.product-badge-orange {
    background-color: #ffedd5;
    color: #9a3412;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

@media (min-width: 640px) {
    .product-price {
        font-size: 1.5rem;
    }
}

.product-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .product-title {
        font-size: 1.25rem;
    }
}

.product-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .product-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .product-features {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.product-feature {
    display: flex;
    align-items: center;
}

.product-feature svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.product-btn {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.625rem 0;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    transition: background-color 0.3s;
}

@media (min-width: 640px) {
    .product-btn {
        padding: 0.75rem 0;
        font-size: 1rem;
    }
}

.product-btn:hover {
    background-color: var(--primary-dark);
}

.product-btn-orange {
    background-color: var(--orange);
}

.product-btn-orange:hover {
    background-color: var(--orange-dark);
}

/* Projects Section */
.projects-section {
    padding: 3rem 0;
    background-color: var(--white);
}

@media (min-width: 640px) {
    .projects-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .projects-section {
        padding: 5rem 0;
    }
}

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

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

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

.project-image-container {
    height: 16rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .project-image-container {
        height: 18rem;
    }
}

@media (min-width: 1024px) {
    .project-image-container {
        height: 20rem;
    }
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    align-items: flex-end;
}

.project-content {
    padding: 1.25rem;
    color: var(--white);
}

@media (min-width: 640px) {
    .project-content {
        padding: 1.5rem;
    }
}

.project-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: var(--white);
    display: inline-block;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .project-badge {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
}

.project-badge-red {
    background-color: var(--primary);
}

.project-badge-orange {
    background-color: var(--orange);
}

.project-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .project-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
}

.project-description {
    font-size: 0.875rem;
    color: var(--gray-200);
}

@media (min-width: 640px) {
    .project-description {
        font-size: 1rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom right, var(--primary), var(--orange));
}

@media (min-width: 640px) {
    .why-choose-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .why-choose-section {
        padding: 5rem 0;
    }
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.why-choose-content {
    color: var(--white);
}

.why-choose-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .why-choose-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .why-choose-title {
        font-size: 3rem;
    }
}

.why-choose-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-100);
}

@media (min-width: 640px) {
    .why-choose-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .why-choose-description {
        font-size: 1.25rem;
    }
}

.why-choose-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .why-choose-features {
        gap: 1.5rem;
    }
}

.why-choose-feature {
    display: flex;
    align-items: flex-start;
}

.why-choose-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .why-choose-icon {
        padding: 0.75rem;
        margin-right: 1rem;
    }
}

.why-choose-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

@media (min-width: 640px) {
    .why-choose-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.why-choose-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .why-choose-feature-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
}

.why-choose-feature-text {
    font-size: 0.875rem;
    color: var(--gray-100);
}

@media (min-width: 640px) {
    .why-choose-feature-text {
        font-size: 1rem;
    }
}

.why-choose-image-container {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .why-choose-image-container {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .why-choose-image-container {
        height: 600px;
    }
}

.why-choose-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

@media (min-width: 640px) {
    .about-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 5rem 0;
    }
}

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

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

.about-image-container {
    position: relative;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .about-image-container {
        height: 500px;
    }
}

@media (min-width: 1024px) {
    .about-image-container {
        height: 600px;
    }
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .about-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
}

.about-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .about-text {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
}

.about-text:last-of-type {
    margin-bottom: 0rem;
}

@media (min-width: 640px) {
    .about-text:last-of-type {
        margin-bottom: 2rem;
    }
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .about-stats-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

.about-stat-card {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .about-stat-card {
        padding: 0.5rem;
    }
}

.about-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .about-stat-number {
        font-size: 2.25rem;
    }
}

.about-stat-red {
    color: var(--primary);
}

.about-stat-orange {
    color: var(--orange);
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--gray-700);
}

@media (min-width: 640px) {
    .about-stat-label {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background-color: var(--white);
}

@media (min-width: 640px) {
    .contact-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 5rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-top: -50px;
    }
}

.contact-info-card {
    background: linear-gradient(to bottom right, #fef2f2, #fff7ed);
    padding: 0.9rem;
    border-radius: 0.75rem;
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.07);
    margin-bottom: 0.875rem;
}

@media (min-width: 640px) {
    .contact-info-card {
        padding: 1.2rem;
        margin-bottom: 1.25rem;
    }
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-info-list {
        gap: 1.5rem;
    }
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .contact-info-icon {
        padding: 0.75rem;
        margin-right: 1rem;
    }
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--white);
}

@media (min-width: 640px) {
    .contact-info-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.contact-info-icon-red {
    background-color: var(--primary);
}

.contact-info-icon-orange {
    background-color: var(--orange);
}

.contact-info-label {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .contact-info-label {
        font-size: 1rem;
    }
}

.contact-info-text {
    font-size: 0.875rem;
    color: var(--gray-700);
}

@media (min-width: 640px) {
    .contact-info-text {
        font-size: 1rem;
    }
}

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

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

@media (min-width: 640px) {
    .social-link {
        width: 3.5rem;
        height: 3.5rem;
    }
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 640px) {
    .social-link svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.social-link-red {
    background-color: var(--primary);
}

.social-link-red:hover {
    background-color: var(--primary-dark);
}

.social-link-orange {
    background-color: var(--orange);
}

.social-link-orange:hover {
    background-color: var(--orange-dark);
}

.social-link-pink {
    background-color: #db2777;
}

.social-link-pink:hover {
    background-color: #be185d;
}

.contact-form-container {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.07);
}

@media (min-width: 640px) {
    .contact-form-container {
        padding: 1.4rem;
    }
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

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

@media (min-width: 640px) {
    .contact-form {
        gap: 1.5rem;
    }
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.625rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
}

@media (min-width: 640px) {
    .form-input {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(171, 0, 13, 0.2);
}

.form-input::placeholder {
    color: var(--gray-400);
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 2rem 0;
}

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

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .footer-brand {
        margin-bottom: 1rem;
    }
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.footer-logo-text {
    margin-left: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .footer-logo-text {
        font-size: 1.25rem;
    }
}

.footer-logo-accent {
    color: var(--primary);
}

.footer-description {
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (min-width: 640px) {
    .footer-description {
        font-size: 1rem;
    }
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .footer-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

@media (min-width: 640px) {
    .footer-link {
        font-size: 1rem;
    }
}

.footer-link:hover {
    color: var(--primary);
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .footer-social-links {
        gap: 1rem;
        margin-bottom: 1rem;
    }
}

.footer-social-link {
    background-color: var(--gray-800);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

@media (min-width: 640px) {
    .footer-social-link {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.footer-social-link svg {
    width: 1rem;
    height: 1rem;
}

@media (min-width: 640px) {
    .footer-social-link svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.footer-social-link:hover {
    background-color: var(--primary);
}

.footer-newsletter {
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (min-width: 640px) {
    .footer-newsletter {
        font-size: 1rem;
    }
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        padding-top: 2rem;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (min-width: 640px) {
    .footer-copyright {
        font-size: 1rem;
    }
}

.footer-bottom-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: var(--primary);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-menu.mobile-open .nav-link-button {
        width: 100%;
        text-align: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

