/* =============================================
   REDKEY Solar System - Main Stylesheet
   ============================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* Colors */
.text-red { color: #dc2626; }
.text-yellow { color: #fbbf24; }
.text-white { color: #ffffff; }
.text-gray { color: #4b5563; }
.text-green { color: #22c55e; }
.text-emerald { color: #10b981; }
.text-blue { color: #3b82f6; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-primary {
    background-color: #dc2626;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #b91c1c;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #1f2937;
}

.btn-outline-red {
    background-color: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-outline-red:hover {
    background-color: #fef2f2;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

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

/* =============================================
   Header
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.logo-red {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
}

.logo-normal {
    font-size: 1.25rem;
    font-weight: 300;
    color: #374151;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
}

.mobile-menu-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.close-icon {
    display: none;
}

.nav-mobile {
    display: none;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile .nav-link {
    display: block;
    padding: 0.75rem 0;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-mobile.open {
        display: block;
    }
    
    .mobile-menu-btn.open .menu-icon {
        display: none;
    }
    
    .mobile-menu-btn.open .close-icon {
        display: block;
    }
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    padding: 5rem 0;
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 2rem;
    height: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =============================================
   Page Hero (Internal Pages)
   ============================================= */
.page-hero {
    position: relative;
    padding: 5rem 0;
}

.page-hero-red {
    background-color: #dc2626;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 1), rgba(31, 41, 55, 0.9));
}

.page-hero-overlay-red {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(185, 28, 28, 0.9), rgba(220, 38, 38, 0.8));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero-content h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto;
}

/* =============================================
   Sections
   ============================================= */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: #ffffff;
}

.section-gray {
    background-color: #f9fafb;
}

.section-red {
    background-color: #dc2626;
}

.section-dark {
    background: linear-gradient(135deg, #111827, #1f2937);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-lg {
    font-size: 1.125rem;
}

.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.max-width-3 {
    max-width: 48rem;
}

.max-width-4 {
    max-width: 56rem;
}

.max-width-5 {
    max-width: 64rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   Grids
   ============================================= */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

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

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

/* =============================================
   Cards
   ============================================= */
.card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon svg {
    width: 2rem;
    height: 2rem;
}

.card-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.card-icon-yellow {
    background-color: #fef9c3;
    color: #ca8a04;
}

.card-icon-emerald {
    background-color: #d1fae5;
    color: #059669;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.card p {
    color: #4b5563;
}

/* =============================================
   Images
   ============================================= */
.rounded-img {
    border-radius: 1rem;
    width: 100%;
    height: auto;
}

.shadow-xl {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-with-badge {
    position: relative;
}

.badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: #dc2626;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.875rem;
}

/* =============================================
   Check List
   ============================================= */
.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #374151;
}

.check-list li::before {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
    background-size: contain;
    flex-shrink: 0;
}

/* =============================================
   Feature List
   ============================================= */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-icon-red {
    background-color: #fef2f2;
    color: #dc2626;
}

.feature-icon-yellow {
    background-color: #fef9c3;
    color: #ca8a04;
}

.feature-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.feature-item h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #4b5563;
}

/* Feature List Dark */
.feature-list-dark {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-dark {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon-dark {
    width: 3rem;
    height: 3rem;
    background-color: #dc2626;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-dark svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

.feature-item-dark h4 {
    font-weight: 600;
    color: #ffffff;
}

.feature-item-dark p {
    color: #9ca3af;
}

/* =============================================
   Section Icon Title
   ============================================= */
.section-icon-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-icon-title.justify-center {
    justify-content: center;
}

.section-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.section-icon-red {
    background-color: #fef2f2;
    color: #dc2626;
}

.section-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

/* =============================================
   Dark Card
   ============================================= */
.dark-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 2rem;
}

.dark-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dark-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
}

.dark-icon-red {
    background-color: #dc2626;
}

.dark-icon-green {
    background-color: #16a34a;
}

/* =============================================
   Check Card
   ============================================= */
.check-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #22c55e;
    flex-shrink: 0;
}

/* =============================================
   Project List
   ============================================= */
.project-list {
    list-style: none;
}

.project-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.project-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #dc2626;
    flex-shrink: 0;
}

/* =============================================
   Award Card
   ============================================= */
.award-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #eab308;
    margin-bottom: 1rem;
}

.award-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.2s;
}

.award-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.award-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #fef9c3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.award-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
    color: #eab308;
}

.award-card h3 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #6b7280;
}

/* =============================================
   Advantage Card
   ============================================= */
.advantage-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
}

.advantage-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.advantage-icon {
    width: 4rem;
    height: 4rem;
    background-color: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #dc2626;
    transition: all 0.2s;
}

.advantage-icon svg {
    width: 2rem;
    height: 2rem;
}

.advantage-card:hover .advantage-icon {
    background-color: #dc2626;
    color: #ffffff;
}

.advantage-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.advantage-card p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* =============================================
   Feature Card (Products Page)
   ============================================= */
.feature-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    transition: all 0.2s;
}

.feature-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: #fef2f2;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #dc2626;
    transition: all 0.2s;
}

.feature-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.feature-card:hover .feature-icon {
    background-color: #dc2626;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* =============================================
   Feature Grid 2
   ============================================= */
.feature-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.feature-mini svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.feature-mini .text-yellow { color: #eab308; }
.feature-mini .text-green { color: #22c55e; }
.feature-mini .text-emerald { color: #10b981; }
.feature-mini .text-blue { color: #3b82f6; }

/* =============================================
   Main Features Grid
   ============================================= */
.main-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.main-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.main-feature-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.main-feature-item span {
    color: #e5e7eb;
}

/* =============================================
   Service List
   ============================================= */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.service-item svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.service-item .text-yellow { color: #eab308; }
.service-item .text-red { color: #dc2626; }
.service-item .text-blue { color: #3b82f6; }
.service-item .text-gray-500 { color: #6b7280; }

/* =============================================
   Stats Section
   ============================================= */
.stats-section {
    background-color: #dc2626;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

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

.stat-item {
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.stat-label {
    color: #fecaca;
}

/* =============================================
   Projects Grid
   ============================================= */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s;
}

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

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

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

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

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

.project-overlay h3 {
    color: #ffffff;
    font-size: 1.25rem;
}

.project-content {
    padding: 1.5rem;
}

.project-content p {
    color: #4b5563;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-meta svg {
    width: 1rem;
    height: 1rem;
}

/* =============================================
   Highlight Grid
   ============================================= */
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.highlight-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 20rem;
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.highlight-card:hover img {
    transform: scale(1.05);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-badge svg {
    width: 1.25rem;
    height: 1.25rem;
}

.highlight-overlay h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight-overlay p {
    color: #d1d5db;
}

/* =============================================
   Contact Section
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-icon-red {
    background-color: #fef2f2;
    color: #dc2626;
}

.contact-icon-green {
    background-color: #dcfce7;
    color: #16a34a;
}

.contact-icon-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.contact-icon-yellow {
    background-color: #fef9c3;
    color: #ca8a04;
}

.contact-card h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-card p,
.contact-card a {
    color: #4b5563;
}

.contact-card a:hover {
    color: #dc2626;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact-form-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dc2626;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    color: #111827;
}

.contact-form-header p {
    color: #6b7280;
}

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

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

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

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

.form-group label {
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Map Card */
.map-card {
    border-radius: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-placeholder {
    background-color: #f3f4f6;
    height: 24rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.map-icon {
    width: 4rem;
    height: 4rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.map-placeholder .btn {
    margin-top: 1rem;
}

/* Quick Contact */
.quick-contact {
    background-color: #dc2626;
    padding: 4rem 0;
}

.quick-contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .quick-contact-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.quick-contact-text h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quick-contact-text p {
    color: #fecaca;
}

.quick-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    color: #dc2626;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.quick-contact-btn:hover {
    background-color: #f3f4f6;
}

.quick-contact-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* =============================================
   Partner Section
   ============================================= */
.partner-section {
    background-color: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background-color: #030712;
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.footer-logo span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sun-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #eab308;
}

.footer-powered span {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* =============================================
   Back to Top Button
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    z-index: 50;
}

.back-to-top:hover {
    background-color: #b91c1c;
    transform: scale(1.1);
}

.back-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* =============================================
   Responsive Adjustments
   ============================================= */
@media (max-width: 640px) {
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .badge {
        position: static;
        margin-top: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
}
