/* =============================================
   REDKEY Solar System - Main Stylesheet
   ============================================= */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* 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 - Mobile Improvements
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    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;
    z-index: 1001;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-red {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
}

.logo-normal {
    font-size: 0.875rem;
    font-weight: 400;
    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;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    z-index: 1001;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

.close-icon {
    display: none;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.nav-mobile .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 1rem;
    color: #374151;
}

.nav-mobile .nav-link:last-child {
    border-bottom: none;
}

.nav-mobile .nav-link:hover {
    color: #dc2626;
    background: #fef2f2;
    padding-left: 0.5rem;
}

.nav-mobile.open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .header .container {
        height: 4rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: #f3f4f6;
        transition: background 0.2s;
    }
    
    .mobile-menu-btn:hover {
        background: #e5e7eb;
    }
    
    .mobile-menu-btn.open .menu-icon {
        display: none;
    }
    
    .mobile-menu-btn.open .close-icon {
        display: block;
    }
    
    /* Hero adjustments */
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Section adjustments */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Page hero */
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    /* Cards */
    .card {
        padding: 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    /* Back to top */
    .back-to-top {
        bottom: 5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
    
    /* Fix overflow */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .grid-2, .grid-3, .grid-4 {
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quote-info-section,
    .contact-info-section {
        grid-template-columns: 1fr;
    }
    
    /* Hide any overflow on mobile */
    .hero-bg {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .logo img {
        height: 40px;
    }
}

/* Fix all overflow issues */
section, header, footer, div, main, nav {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fix form elements */
input, select, textarea {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix row and wrapper elements */
.row, .wrapper, .content-wrapper {
    max-width: 100%;
    box-sizing: border-box;
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.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));
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    padding: 5rem 0;
    width: 100%;
}

.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;
}

@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;
    overflow: visible;
}

.badge {
    position: relative;
    display: inline-block;
    background-color: #dc2626;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.875rem;
}

/* =============================================
   Partner Section
   ============================================= */
.partner-section {
    background-color: #ffffff;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background-color: #111827;
    padding: 4rem 0 2rem;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 3rem;
    width: auto;
}

.footer-desc {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: #dc2626;
}

.footer-contact a {
    color: #9ca3af;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-powered .sun-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

/* =============================================
   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;
    opacity: 0;
    pointer-events: none;
}

.back-to-top:hover {
    background-color: #b91c1c;
    transform: scale(1.1);
}

.back-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* =============================================
   Forms
   ============================================= */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.2s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* =============================================
   Tables
   ============================================= */
.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.data-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.data-table tr:hover {
    background-color: #f9fafb;
}

/* =============================================
   Alerts
   ============================================= */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background-color: #fef9c3;
    color: #854d0e;
    border: 1px solid #fde047;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* =============================================
   Responsive
   ============================================= */
@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%;
    }
}

/* =============================================
   WhatsApp Floating Button
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =============================================
   Yellow Button (Get Quotation)
   ============================================= */
.btn-yellow {
    background-color: #fbbf24 !important;
    color: #1f2937 !important;
    font-weight: 700;
}

.btn-yellow:hover {
    background-color: #f59e0b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

/* =============================================
   Navigation CTA Button
   ============================================= */
.nav-link-cta {
    background-color: #fbbf24;
    color: #1f2937 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-link-cta:hover,
.nav-link-cta.active {
    background-color: #f59e0b;
    color: #1f2937 !important;
    transform: translateY(-1px);
}

/* =============================================
   Hero Small (for internal pages)
   ============================================= */
.hero-sm {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-sm .hero-content {
    text-align: center;
    max-width: 100%;
    padding: 3rem 0;
}

.hero-sm h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   Quotation Form Styles
   ============================================= */
.quotation-form {
    text-align: left;
}

.quotation-form h2 {
    font-size: 1.75rem;
    color: #111827;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-block {
    width: 100%;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.contact-info-item svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #dc2626;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: #4b5563;
    margin: 0;
    font-size: 0.9375rem;
}

/* Gap utility */
.gap-16 {
    gap: 4rem;
}

/* Justify center */
.justify-center {
    justify-content: center;
}

/* =============================================
   About Page - Check Cards
   ============================================= */
.check-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
    flex-shrink: 0;
}

.check-card span {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.5;
}

/* =============================================
   About Page - Dark Cards
   ============================================= */
.dark-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.dark-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dark-icon svg {
    width: 2rem;
    height: 2rem;
}

.dark-icon-red {
    background: rgba(220, 38, 38, 0.2);
    color: #f87171;
}

.dark-icon-green {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

/* =============================================
   About Page - Award Cards
   ============================================= */
.award-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.award-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #dc2626, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.award-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
    color: #fff;
}

.award-card h3 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* =============================================
   About Page - Project List
   ============================================= */
.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.project-list li:last-child {
    border-bottom: none;
}

.project-list li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    flex-shrink: 0;
}

/* =============================================
   Responsive Adjustments
   ============================================= */
@media (max-width: 768px) {
    .dark-card {
        padding: 1.5rem;
    }
    
    .check-card {
        padding: 1rem;
    }
    
    .award-card {
        padding: 1.5rem;
    }
}

/* =============================================
   Clients Section
   ============================================= */
.clients-section {
    padding: 5rem 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0.75rem;
    width: 100%;
    text-align: center;
    min-height: 100px;
}

.client-logo {
    max-width: 140px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-item:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .client-item {
        padding: 1rem;
        min-height: 80px;
    }
    
    .client-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}