/* ============================================
   TAGMAN CONSULT LTD - WEBSITE STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #1a365d;
    --accent-teal: #2d7a8e;
    --gold-accent: #c9a227;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-dark: #1a1a2e;
    --text-medium: #6c757d;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 4px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--gold-accent);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-blue);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--primary-blue);
    color: white !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--accent-teal);
    color: white !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a365d 0%, #2d7a8e 50%, #1a365d 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero_bg.png') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.82) 0%, rgba(26, 54, 93, 0.60) 60%, rgba(26, 54, 93, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gold-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
}

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    z-index: 2;
}

.hero-scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* ============================================
   SECTIONS - COMMON STYLES
   ============================================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-teal);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.vision-card, .mission-card {
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.vision-card {
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    border-left: 4px solid var(--accent-teal);
}

.mission-card {
    background: linear-gradient(135deg, #fffbeb, #fef9ec);
    border-left: 4px solid var(--gold-accent);
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
    display: inline-block;
}

.vision-icon::before {
    content: '👁';
    font-size: 2rem;
}

.mission-icon::before {
    content: '🎯';
    font-size: 2rem;
}

.vision-card h4, .mission-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.vision-card p, .mission-card p {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.6;
}

.about-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.feature-icon::before {
    content: '✓';
    display: inline-flex;
    width: 24px;
    height: 24px;
    background: var(--accent-teal);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

.service-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--medium-gray);
    line-height: 1;
    margin-bottom: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: inline-block;
}

.building-icon::before { content: '🏢'; font-size: 2rem; }
.road-icon::before { content: '🌉'; font-size: 2rem; }
.structural-icon::before { content: '⚙️'; font-size: 2rem; }
.drone-icon::before { content: '🚁'; font-size: 2rem; }
.foundation-icon::before { content: '🏗️'; font-size: 2rem; }
.assessment-icon::before { content: '🔍'; font-size: 2rem; }
.steel-icon::before { content: '🔩'; font-size: 2rem; }
.review-icon::before { content: '📋'; font-size: 2rem; }

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    font-size: 0.85rem;
    color: var(--text-medium);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.service-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
}

/* ============================================
   INNOVATION SECTION
   ============================================ */
.innovation {
    background: linear-gradient(135deg, var(--primary-blue), #243b5a);
    color: white;
}

.innovation .section-tag {
    color: var(--gold-accent);
}

.innovation .section-title {
    color: white;
}

.innovation .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 36px;
    border-radius: 12px;
    transition: var(--transition);
}

.innovation-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.innovation-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: inline-block;
}

.mapping-icon::before { content: '🗺️'; font-size: 3rem; }
.insurance-icon::before { content: '🛡️'; font-size: 3rem; }
.construction-icon::before { content: '🏭'; font-size: 3rem; }

.innovation-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.benefit-list strong {
    color: var(--gold-accent);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    transition: var(--transition);
}

.team-card:hover {
    background: var(--light-gray);
}

.team-card.lead {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: left;
    background: linear-gradient(135deg, #f0f7ff, white);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card.lead .team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 0 16px 0;
}

/* Real photo avatars — img tags handle display */
.team-avatar[src] {
    object-fit: cover;
    object-position: center top;
}

/* Placeholder icons for team members without photos yet */
.team-avatar-6::before { content: '👨‍💼'; font-size: 2.5rem; }
.team-avatar-8::before { content: '👨‍⚕️'; font-size: 2.5rem; }

.team-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects {
    background: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.project-card.featured {
    grid-column: span 2;
    flex-direction: row;
}

.project-image {
    height: 200px;
    position: relative;
}

.project-card.featured .project-image {
    width: 50%;
    min-width: 400px;
    height: auto;
}

/* Real project photography from company profile PDF */
.project-img-1  { background: url('../images/proj_hospitals.jpeg') center / cover no-repeat; }
.project-img-2  { background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal)); }
.project-img-4  { background: url('../images/proj_renal_clinic.gif') center / cover no-repeat; }
.project-img-5  { background: url('../images/proj_apinto.jpeg') center / cover no-repeat; }
.project-img-6  { background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal)); }
.project-img-7  { background: url('../images/proj_lafa.jpeg') center / cover no-repeat; }
.project-img-9  { background: url('../images/proj_wash.jpeg') center / cover no-repeat; }
.project-img-10 { background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal)); }
.project-img-11 { background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal)); }
.project-img-12 { background: url('../images/proj_integrity.jpeg') center / cover no-repeat; }
.project-img-13 { background: url('../images/proj_gimpa_lecture_halls.jpeg') center / cover no-repeat; }
.project-img-14 { background: url('../images/proj_davido_apartments.jpeg') center / cover no-repeat; }
.project-img-15 { background: url('../images/proj_vbci_office_block.jpeg') center / cover no-repeat; }
.project-img-16 { background: url('../images/proj_paradise_assembly_temple.jpeg') center / cover no-repeat; }
.project-img-17 { background: url('../images/proj_retrofit.jpeg') center / cover no-repeat; }

.project-content {
    padding: 32px;
    flex: 1;
}

.project-card.featured .project-content {
    padding: 40px;
}

.project-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-teal);
    background: rgba(45, 122, 142, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.project-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.project-client {
    font-size: 0.9rem;
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: 12px;
}

.project-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 12px;
}

.project-year {
    font-size: 0.8rem;
    color: var(--gold-accent);
    font-weight: 700;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients {
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.client-item {
    text-align: center;
    padding: 20px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.client-item:hover {
    background: var(--light-gray);
    color: var(--accent-teal);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon::before { content: '📍'; font-size: 1.5rem; }
.postal-icon::before { content: '✉️'; font-size: 1.5rem; }
.phone-icon::before { content: '📞'; font-size: 1.5rem; }
.email-icon::before { content: '📧'; font-size: 1.5rem; }

.contact-details h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-medium);
    line-height: 1.6;
}

.gps-label {
    font-size: 0.85rem !important;
    color: var(--accent-teal) !important;
    font-weight: 600;
    margin-top: 4px;
}

.contact-details a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-blue);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

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

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(45, 122, 142, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    font-size: 0.9rem;
}

.footer-links h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

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

.footer-links li {
    padding: 4px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"] {
    animation-fill-mode: forwards;
}

.animated [data-animate] {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.services-grid [data-animate],
.team-grid [data-animate],
.projects-grid [data-animate],
.clients-grid [data-animate] {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 40px 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
    }

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

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

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

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

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

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

    .project-card.featured {
        flex-direction: column;
        grid-column: span 1;
    }

    .project-card.featured .project-image {
        width: 100%;
        min-width: auto;
        height: 250px;
    }

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

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .team-card.lead {
        flex-direction: column;
        text-align: center;
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

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

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

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

    .about-features {
        gap: 16px;
    }

    .team-card.lead {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

/* Cloudflare Turnstile hidden widget styling */
.cf-hidden {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
