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

:root {
    --primary-navy: #0A1628;
    --secondary-slate: #1e293b;
    --accent-orange: #f59e0b;
    --accent-blue: #3b82f6;
    --bg-light: #f8fafc;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

    header.scrolled {
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-navy);
    z-index: 1001;
}

.logo-icon {
    background: var(--accent-orange);
    color: var(--white);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.shreyansh-logo-image {
    width: 65px;
    height: 65px;
    border: .5px solid #f39c12;
    background: white;
    border-radius: 10px;
}

.logo-text {
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    font-weight: 700;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-orange);
        }

.cta-btn {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

    .cta-btn:hover {
        background: #d97706;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-navy);
    z-index: 1001;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-slate) 100%);
    color: var(--white);
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(30deg, transparent 40%, rgba(59, 130, 246, 0.05) 40%, rgba(59, 130, 246, 0.05) 60%, transparent 60%), linear-gradient(120deg, transparent 40%, rgba(245, 158, 11, 0.05) 40%, rgba(245, 158, 11, 0.05) 60%, transparent 60%);
        background-size: 100px 100px;
        animation: moveGrid 20s linear infinite;
    }

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

.hero-content {
    max-width: 650px;
    z-index: 1;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-orange);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-primary:hover {
        background: #d97706;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    }

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

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

.hero-image {
    z-index: 1;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.excavator-image-wrapper {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

    .excavator-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

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

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 800;
        color: var(--primary-navy);
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--text-light);
    }

/* Services Section */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;

    display: flex;
    flex-direction: column;
    align-items: center; /* centers everything horizontally */
    justify-content: flex-start; /* keeps content top-aligned vertically */
    text-align: center; /* ensures heading and paragraph are centered */
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--accent-orange);
    }

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Equipment Section - FIXED FOR MOBILE */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.equipment-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    width: 100%;
}

    .equipment-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.equipment-image {
    width: 100%;
    height: 220px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #991b1b;
}

    .equipment-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

.equipment-info {
    padding: 2rem;
}

    .equipment-info h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 0.5rem;
        white-space: nowrap;
        text-align: center;
    }

.equipment-type {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.equipment-specs {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.spec-label {
    color: var(--text-light);
    font-size: 0.9rem;
    flex-shrink: 0;
    min-width: 120px;
}

.spec-value {
    font-weight: 600;
    color: var(--primary-navy);
    text-align: right;
    word-break: break-word;
}
/* Keep descriptions same height */
.short-desc {
    min-height: 48px; /* Adjust if needed */
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Divider line above specs */
.spec-divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 1rem 0;
}

/* Specs section grows equally */
.equipment-specs {
    flex: 1;
}

.equipment-tag {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.request-btn {
    width: 100%;
    display: block;
    padding: 0.875rem;
    background: var(--accent-orange);
    color: var(--white) !important;
    text-decoration: none !important; /* remove underline */
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* prevents splitting */
}

    .request-btn:hover {
        background: #d97706;
    }

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-slate) 100%);
    color: var(--white);
    text-align: center;
}

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

.stat-item h3 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
}

/* CTA Section */
.cta-section {
    background: var(--secondary-slate);
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
}

    .cta-section h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--white);
    }

    .cta-section p {
        font-size: clamp(1rem, 2vw, 1.2rem);
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.85);
    }

/* Footer */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--accent-orange);
        }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .social-icon:hover {
        background: var(--accent-orange);
        transform: translateY(-3px);
        border-color: var(--accent-orange);
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-btn svg {
        width: 32px;
        height: 32px;
        fill: white;
    }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .excavator-image-wrapper {
        margin: 0 auto;
    }

    /* Equipment: 2 columns on tablet */
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--white);
        width: 75%;
        max-width: 300px;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        gap: 1.5rem;
        overflow-y: auto;
    }

        .nav-links.active {
            right: 0;
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 0.5rem 0;
        }

    .hero {
        padding: 2.5rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

    .service-card {
        padding: 2rem;
    }

    /* Equipment: 1 column on mobile - NO SCROLL */
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .equipment-info {
        padding: 1.5rem;
    }

    .equipment-image {
        height: 200px;
    }

    .spec-label {
        min-width: 100px;
        font-size: 0.85rem;
    }

    .spec-value {
        font-size: 0.85rem;
    }

    .stats-grid {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

        .whatsapp-btn svg {
            width: 26px;
            height: 26px;
        }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 0.85rem;
    }

    .logo-icon,
    .shreyansh-logo-image {
        width: 65px;
        height: 65px;
    }

    .equipment-info {
        padding: 1.25rem;
    }

    .equipment-image {
        height: 180px;
    }

    .equipment-info h3 {
        font-size: 1.3rem;
    }

    .spec-label {
        min-width: 90px;
        font-size: 0.8rem;
    }

    .spec-value {
        font-size: 0.8rem;
    }

    .hero {
        padding: 2rem 1rem;
    }
}


/* Services Page Specific Styles */
/* Add this to your styles.css file or create services.css */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-slate) 100%);
    color: var(--white);
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .services-hero::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(30deg, transparent 40%, rgba(59, 130, 246, 0.05) 40%, rgba(59, 130, 246, 0.05) 60%, transparent 60%), linear-gradient(120deg, transparent 40%, rgba(245, 158, 11, 0.05) 40%, rgba(245, 158, 11, 0.05) 60%, transparent 60%);
        background-size: 100px 100px;
        animation: moveGrid 20s linear infinite;
    }

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-light);
    padding: 1.5rem 2rem;
}

.breadcrumb-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb a:hover {
        color: var(--accent-orange);
    }

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Services Detail Section */
.services-detail {
    padding: 5rem 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

    .service-detail-card:hover {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        transform: translateY(-5px);
    }

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-detail-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.service-detail-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.service-detail-content {
    line-height: 1.9;
    color: var(--text-dark);
    font-size: 1.05rem;
}

    .service-detail-content p {
        margin-bottom: 1.5rem;
    }

    .service-detail-content ul {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }

        .service-detail-content ul li {
            padding: 1rem 0;
            padding-left: 2rem;
            position: relative;
            border-bottom: 1px solid #e5e7eb;
        }

            .service-detail-content ul li:last-child {
                border-bottom: none;
            }

            .service-detail-content ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: var(--accent-orange);
                font-weight: 800;
                font-size: 1.3rem;
            }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-5px);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.process-step {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .process-step:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d97706 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 5rem 0;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

    .cta-banner h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

    .cta-banner p {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        margin-bottom: 2rem;
        opacity: 0.95;
    }

    .cta-banner .btn-primary {
        background: var(--white);
        color: var(--accent-orange);
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }

        .cta-banner .btn-primary:hover {
            background: var(--primary-navy);
            color: var(--white);
        }

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

    .faq-question:hover {
        color: var(--accent-orange);
    }

    .faq-question::after {
        content: '+';
        font-size: 1.8rem;
        font-weight: 400;
        transition: transform 0.3s ease;
    }

    .faq-question.active::after {
        transform: rotate(45deg);
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

    .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.5rem;
    }
}

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

    .breadcrumb-content {
        font-size: 0.85rem;
    }

    .service-detail-card {
        padding: 1.5rem 1rem;
    }

    .service-detail-content {
        font-size: 1rem;
    }

    .cta-banner .btn-primary {
        width: 100%;
        padding: 1rem 2rem;
    }
}


/* Equipment Page Specific Styles */
/* Add this to your styles.css file */

/* Equipment Hero Section */
.equipment-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-slate) 100%);
    color: var(--white);
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .equipment-hero::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(30deg, transparent 40%, rgba(59, 130, 246, 0.05) 40%, rgba(59, 130, 246, 0.05) 60%, transparent 60%), linear-gradient(120deg, transparent 40%, rgba(245, 158, 11, 0.05) 40%, rgba(245, 158, 11, 0.05) 60%, transparent 60%);
        background-size: 100px 100px;
        animation: moveGrid 20s linear infinite;
    }

.equipment-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.equipment-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.equipment-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-light);
    padding: 1.5rem 2rem;
}

.breadcrumb-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb a:hover {
        color: var(--accent-orange);
    }

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

/* Filter Section */
.equipment-filters {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

    .filter-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .filter-group select,
    .filter-group input {
        padding: 0.75rem 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: var(--white);
        color: var(--text-dark);
    }

        .filter-group select:focus,
        .filter-group input:focus {
            outline: none;
            border-color: var(--accent-orange);
        }

.filter-btn {
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

    .filter-btn:hover {
        background: #d97706;
        transform: translateY(-2px);
    }

.clear-filters {
    background: transparent;
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

    .clear-filters:hover {
        border-color: var(--accent-orange);
        color: var(--accent-orange);
    }

/* Equipment Grid Section */
.equipment-showcase {
    padding: 3rem 0 5rem;
}

.equipment-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Enhanced Equipment Card */
.equipment-card-full {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
}

    .equipment-card-full:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.equipment-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

.equipment-image-full {
    width: 100%;
    height: 250px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

    .equipment-image-full img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

.equipment-info-full {
    padding: 2rem;
}

    .equipment-info-full h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 0.5rem;
    }

.equipment-type-full {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.equipment-specs-full {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-row-full {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

    .spec-row-full:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.spec-label-full {
    color: var(--text-light);
    font-size: 0.9rem;
    flex-shrink: 0;
    min-width: 130px;
}

.spec-value-full {
    font-weight: 700;
    color: var(--primary-navy);
    text-align: right;
    word-break: break-word;
    font-size: 1rem;
}

.equipment-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.equipment-actions {
    display: flex;
    gap: 1rem;
}

.request-btn-full {
    flex: 1;
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .request-btn-full:hover {
        background: #d97706;
        transform: translateY(-2px);
    }

.details-btn {
    background: transparent;
    color: var(--accent-orange);
    padding: 1rem;
    border: 2px solid var(--accent-orange);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .details-btn:hover {
        background: var(--accent-orange);
        color: var(--white);
    }

/* Equipment Categories */
.equipment-categories {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        border: 2px solid var(--accent-orange);
    }

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 4rem;
}

    .pagination button {
        padding: 0.75rem 1rem;
        border: 2px solid #e5e7eb;
        background: var(--white);
        color: var(--text-dark);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
    }

        .pagination button:hover:not(:disabled) {
            border-color: var(--accent-orange);
            color: var(--accent-orange);
        }

        .pagination button.active {
            background: var(--accent-orange);
            color: var(--white);
            border-color: var(--accent-orange);
        }

        .pagination button:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

/* Responsive Design */
@media (max-width: 1024px) {
    .equipment-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .equipment-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .equipment-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .equipment-grid-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .equipment-card-full {
        max-width: 100%;
    }

    .equipment-info-full {
        padding: 1.5rem;
    }

    .equipment-image-full {
        height: 220px;
    }

    .spec-label-full {
        min-width: 110px;
        font-size: 0.85rem;
    }

    .spec-value-full {
        font-size: 0.9rem;
    }

    .equipment-actions {
        flex-direction: column;
    }

    .details-btn {
        width: 100%;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}

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

    .breadcrumb-content {
        font-size: 0.85rem;
    }

    .equipment-info-full h3 {
        font-size: 1.4rem;
    }

    .equipment-info-full {
        padding: 1.25rem;
    }

    .equipment-image-full {
        height: 200px;
    }

    .spec-label-full {
        min-width: 100px;
        font-size: 0.8rem;
    }

    .spec-value-full {
        font-size: 0.85rem;
    }
}

/* About Page Specific Styles */
/* Add this to your styles.css file */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-slate) 100%);
    color: var(--white);
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-hero::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(30deg, transparent 40%, rgba(59, 130, 246, 0.05) 40%, rgba(59, 130, 246, 0.05) 60%, transparent 60%), linear-gradient(120deg, transparent 40%, rgba(245, 158, 11, 0.05) 40%, rgba(245, 158, 11, 0.05) 60%, transparent 60%);
        background-size: 100px 100px;
        animation: moveGrid 20s linear infinite;
    }

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

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

.story-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .stat-box h3 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--accent-orange);
        margin-bottom: 0.5rem;
    }

    .stat-box p {
        font-size: 0.95rem;
        color: var(--text-light);
        margin: 0;
    }

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

    .story-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        max-height: 500px;
    }

/* Mission & Vision Section */
.mission-vision {
    background: var(--bg-light);
    padding: 5rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .mission-card::before,
    .vision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--accent-orange) 0%, #d97706 100%);
    }

    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Core Values Section */
.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--accent-orange);
    }

.value-number {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Team Section */
.team-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.team-image {
    width: 100%;
    height: 280px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.team-info {
    padding: 2rem;
    text-align: center;
}

    .team-info h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 0.5rem;
    }

    .team-info .role {
        color: var(--accent-orange);
        font-weight: 600;
        margin-bottom: 1rem;
        display: block;
    }

    .team-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-light);
    }

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100%;
        background: var(--accent-orange);
    }

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
    }

    .timeline-item:nth-child(even) .timeline-year {
        grid-column: 1;
        text-align: right;
    }

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    position: relative;
}

    .timeline-year::after {
        content: '';
        position: absolute;
        right: -2.4rem;
        width: 20px;
        height: 20px;
        background: var(--accent-orange);
        border-radius: 50%;
        border: 4px solid var(--white);
        box-shadow: 0 0 0 3px var(--accent-orange);
    }

.timeline-item:nth-child(even) .timeline-year::after {
/*    left: -1.75rem;
    right: auto;*/
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

    .timeline-content h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 0.75rem;
    }

    .timeline-content p {
        line-height: 1.7;
        color: var(--text-dark);
    }

/* Why Choose Us Section */
.why-choose {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-slate) 100%);
    color: var(--white);
    padding: 5rem 0;
}

    .why-choose h2 {
        color: var(--white);
        text-align: center;
        margin-bottom: 1rem;
    }

    .why-choose > .container > p {
        text-align: center;
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item-about {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .feature-item-about:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateX(10px);
    }

    .feature-item-about h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .feature-item-about h3::before {
            content: '✓';
            color: var(--accent-orange);
            font-weight: 800;
            font-size: 1.5rem;
        }

    .feature-item-about p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 1.5rem 3rem;
    }

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 4rem;
    }

        .timeline-item:nth-child(even) .timeline-content {
            grid-column: 1;
        }

        .timeline-item:nth-child(even) .timeline-year {
            grid-column: 1;
            text-align: left;
        }

    .timeline-year {
        grid-row: 1;
        margin-bottom: 1rem;
    }

        .timeline-year::after {
            left: -2.5rem !important;
            right: auto !important;
        }

    .timeline-content {
        padding: 1.5rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .story-content h2 {
        font-size: 1.8rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .timeline-item {
        padding-left: 3rem;
    }
}


/* Contact Page Specific Styles */
/* Add this to your styles.css file */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-slate) 100%);
    color: var(--white);
    padding: 8rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(30deg, transparent 40%, rgba(59, 130, 246, 0.05) 40%, rgba(59, 130, 246, 0.05) 60%, transparent 60%), linear-gradient(120deg, transparent 40%, rgba(245, 158, 11, 0.05) 40%, rgba(245, 158, 11, 0.05) 60%, transparent 60%);
        background-size: 100px 100px;
        animation: moveGrid 20s linear infinite;
    }

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Contact Main Section */
.contact-main {
    padding: 5rem 0;
}

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

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

    .contact-form h2 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary-navy);
        margin-bottom: 2rem;
    }

.form-group {
    margin-bottom: 1.5rem;
}

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

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        transition: all 0.3s ease;
        background: var(--white);
        color: var(--text-dark);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }

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

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-light);
        }

.form-submit-btn {
    width: 100%;
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .form-submit-btn:hover {
        background: #d97706;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    }

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

    .form-message.success {
        background: #d1fae5;
        color: #065f46;
        border: 1px solid #6ee7b7;
    }

    .form-message.error {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fca5a5;
    }

/* Contact Info Sidebar */
.contact-info-sidebar {
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

    .info-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 1.5rem;
    }

.info-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e7eb;
}

    .info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .info-item h4 {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-light);
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .info-item p {
        color: var(--text-dark);
        font-size: 1.05rem;
        margin: 0;
        line-height: 1.6;
    }

    .info-item a {
        color: var(--accent-orange);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .info-item a:hover {
            color: #d97706;
            text-decoration: underline;
        }

/* Quick Contact Buttons */
.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .quick-contact-btn.phone {
        background: var(--accent-orange);
        color: var(--white);
    }

        .quick-contact-btn.phone:hover {
            background: #d97706;
            transform: translateY(-2px);
        }

    .quick-contact-btn.whatsapp {
        background: #25D366;
        color: var(--white);
    }

        .quick-contact-btn.whatsapp:hover {
            background: #20ba5a;
            transform: translateY(-2px);
        }

    .quick-contact-btn.email {
        background: var(--primary-navy);
        color: var(--white);
    }

        .quick-contact-btn.email:hover {
            background: var(--secondary-slate);
            transform: translateY(-2px);
        }

/* Contact Info Cards Section */
.contact-info-cards {
    background: var(--bg-light);
    padding: 5rem 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .info-card-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-orange);
}

.info-card-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.info-card-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-card-item a {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: none;
}

    .info-card-item a:hover {
        text-decoration: underline;
    }

/* FAQ Section */
.faq-contact {
    padding: 5rem 0;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item-contact {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

    .faq-item-contact:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .faq-item-contact h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary-navy);
        margin-bottom: 1rem;
    }

    .faq-item-contact p {
        color: var(--text-light);
        line-height: 1.8;
        margin: 0;
    }

/* Map Section */
.map-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.map-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

    .map-wrapper iframe {
        width: 100%;
        height: 450px;
        border: none;
        display: block;
    }

/* Response Time Badge */
.response-badge {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d97706 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

    .response-badge h4 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .response-badge p {
        font-size: 0.95rem;
        opacity: 0.95;
        margin: 0;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-sidebar {
        position: static;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 1.5rem 3rem;
    }

    .contact-form {
        padding: 2rem;
    }

        .contact-form h2 {
            font-size: 1.6rem;
        }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .faq-item-contact {
        padding: 1.5rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .quick-contact-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}