/* ============================================
   SC Laser - Modern Redesign
   ============================================ */

:root {
    /* Primary palette - deep technical blues */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --accent: #06b6d4;
    --accent-light: #22d3ee;

    /* Neutrals */
    --navy: #0f172a;
    --navy-light: #1e293b;
    --slate: #334155;
    --slate-light: #475569;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --silver: #cbd5e1;
    --off-white: #f1f5f9;
    --bg: #f8fafc;
    --white: #ffffff;

    /* Functional */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.15);

    /* Borders */
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--slate);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   Skip Navigation
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 2000;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    position: fixed;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 72px !important;
    width: 72px !important;
    max-width: 72px;
    object-fit: contain;
    transition: transform var(--transition);
}

.nav-logo a:hover .logo {
    transform: scale(1.05);
}

.nav-logo picture {
    display: inline-block;
    width: 72px;
    height: 72px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--slate);
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.06);
}

.nav-link[aria-current="page"] {
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
    transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
    width: 60%;
}

.nav-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
    gap: 5px;
    z-index: 1001;
}

.hamburger:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.bar {
    width: 24px;
    height: 2.5px;
    background-color: var(--navy);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    transform-origin: center;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    z-index: 1;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s ease-in-out infinite;
    display: block;
    margin-top: 0.25rem;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.75;
    line-height: 1.7;
    color: var(--silver);
    max-width: 540px;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero-trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-trust-label {
    font-size: 0.8rem;
    color: var(--gray-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 420px;
    position: relative;
}

.hero-logo {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-logo::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.08);
    animation: pulse-ring 3s ease-in-out infinite;
}

.hero-logo::after {
    content: '';
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.04);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

.hero-logo-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.15));
}

.hero-logo picture {
    display: inline-block;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.45);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.btn-full {
    width: 100%;
}

/* Used in non-hero contexts */
.gcc-faq .btn-secondary,
.contact .btn-secondary {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
}

.gcc-faq .btn-secondary:hover,
.contact .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   Section Common Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    padding: 0.35rem 1rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-full);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Scroll Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 6rem 0;
    background-color: var(--bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.08));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.05);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   GCC Focus Section
   ============================================ */
.gcc-focus {
    padding: 6rem 0;
    background-color: var(--white);
}

.gcc-focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gcc-focus-card {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.gcc-focus-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-md);
}

.gcc-focus-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.gcc-list {
    list-style: none;
    padding-left: 0;
    color: var(--gray);
    line-height: 1.7;
}

.gcc-list li {
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.gcc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
}

.gcc-focus-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    padding: 6rem 0;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery .section-header h2,
.gallery .section-header p {
    color: var(--white);
}

.gallery .section-header p {
    opacity: 0.7;
}

.gallery .section-label {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-light);
}

.gallery-scroll {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.gallery-item {
    width: 340px;
    aspect-ratio: 7 / 5;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-lg);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

/* Safari-specific fix */
@media not all and (min-resolution: .001dpcm) {
    @supports (-webkit-appearance: none) {
        .gallery-item img {
            aspect-ratio: auto 7/5;
            min-width: 100%;
            min-height: 100%;
        }
    }
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    padding: 3rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-light);
}

/* ============================================
   GCC FAQ Section (Home page mini FAQ)
   ============================================ */
.gcc-faq {
    padding: 6rem 0;
    background-color: var(--bg);
}

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

.faq-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.faq-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.faq-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   Service Work Section (laser-service page)
   ============================================ */
.service-work-section {
    padding: 6rem 0;
    background-color: var(--bg);
}

.service-work-group {
    margin-bottom: 4rem;
}

.service-work-group:last-of-type {
    margin-bottom: 0;
}

.service-work-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-work-heading::before {
    content: '';
    width: 4px;
    height: 1.5em;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.service-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 1.5rem;
}

.service-work-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.service-work-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-work-card-image {
    position: relative;
    overflow: hidden;
}

.service-work-card-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-work-card-image-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.service-work-pill {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1;
    display: inline-block;
    padding: 0.3rem 0.875rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-work-card img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-work-card:hover img {
    transform: scale(1.03);
}

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

.service-work-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-work-card-body p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.service-work-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition);
}

.service-work-cta:hover {
    color: var(--primary-dark);
    gap: 0.625rem;
}

.service-work-cta::after {
    content: '\2192';
    transition: transform var(--transition);
}

.service-work-cta:hover::after {
    transform: translateX(2px);
}

.service-work-manual {
    display: block;
    margin-top: 0.5rem;
}

.service-work-manual::after {
    content: '\2197';
}

.service-work-cta:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 3px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 6rem 0;
    background-color: var(--bg);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-item:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 1.25rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.08));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item h4 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--slate);
    font-weight: 500;
}

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

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: all var(--transition);
    font-family: inherit;
    background: var(--white);
    color: var(--slate);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

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

/* Form Error Styles */
.form-errors {
    background-color: #fef2f2;
    color: #991b1b;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    border: 1.5px solid #fecaca;
    display: none;
    font-size: 0.9rem;
}

.form-errors.has-errors {
    display: block;
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 0.825rem;
    margin-top: 0.4rem;
    min-height: 1.25rem;
    font-weight: 500;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: var(--error);
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: var(--success);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-light);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.footer-section p {
    color: var(--gray-light);
    line-height: 1.7;
    font-size: 0.925rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
    color: var(--gray-light);
    font-size: 0.925rem;
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray);
    font-size: 0.875rem;
}

/* ============================================
   Modal
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 480px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--gray);
    background: none;
    border: none;
    transition: color var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.close:hover {
    color: var(--navy);
    background: var(--off-white);
}

.close:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.modal-content h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.modal-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   About Page
   ============================================ */
.about-hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 20% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto;
    color: var(--silver);
}

.about-section {
    padding: 5rem 0;
    background-color: var(--bg);
}

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

.about-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.about-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content a {
    font-weight: 500;
}

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

.about-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.about-highlight:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.about-highlight h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.about-highlight p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.925rem;
}

.about-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.about-cta h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.about-cta p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-hero {
    padding-top: 140px;
    padding-bottom: 4rem;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

.faq-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.faq-hero .container {
    position: relative;
    z-index: 1;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.faq-hero p {
    font-size: 1.2rem;
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto;
    color: var(--silver);
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--bg);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    overflow: visible;
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-md);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.15);
}

.faq-question {
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    transition: color var(--transition);
    user-select: none;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    letter-spacing: -0.01em;
}

.faq-question > span:first-child {
    flex: 1;
    min-width: 0;
    margin-right: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.faq-question:focus {
    outline: 2px solid var(--primary);
    outline-offset: -2px;
    border-radius: var(--radius-lg);
}

.faq-toggle {
    font-size: 1rem;
    color: var(--primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background: var(--primary);
    color: var(--white);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.75rem 1.5rem 1.75rem;
    overflow: visible;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: var(--gray);
    margin-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.faq-answer li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.faq-cta h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.faq-cta p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

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

    .hero-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-logo .logo {
        height: 56px !important;
        width: 56px !important;
    }

    .nav-logo picture {
        width: 56px;
        height: 56px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border);
        gap: 0.25rem;
    }

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

    .nav-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.12;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        height: 250px;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .hero-logo-image {
        width: 160px;
        height: 160px;
    }

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

    .btn {
        min-width: 180px;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .gcc-focus-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        width: 280px;
    }

    .gcc-focus,
    .gcc-faq,
    .service-work-section,
    .services,
    .gallery,
    .contact {
        padding: 4rem 0;
    }

    .service-work-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-info h2 {
        font-size: 2rem;
    }

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

    /* About Page Responsive */
    .about-hero {
        padding-top: 110px;
        padding-bottom: 3rem;
    }

    .about-hero h1 {
        font-size: 2.25rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-content {
        padding: 2rem 1.5rem;
    }

    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-content p {
        font-size: 1rem;
    }

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

    /* FAQ Page Responsive */
    .faq-hero {
        padding-top: 110px;
        padding-bottom: 3rem;
    }

    .faq-hero h1 {
        font-size: 2.25rem;
    }

    .faq-hero p {
        font-size: 1rem;
    }

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

    .faq-question > span:first-child {
        margin-right: 0.75rem;
    }

    .faq-toggle {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

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

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
        max-height: 1200px;
    }

    .service-work-heading::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-logo .logo {
        height: 44px !important;
        width: 44px !important;
    }

    .nav-logo picture {
        width: 44px;
        height: 44px;
    }

    .nav-menu {
        top: 60px;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-trust {
        gap: 1.25rem;
    }

    .hero-trust-number {
        font-size: 1.25rem;
    }

    .hero-trust-label {
        font-size: 0.7rem;
    }

    .hero-badge {
        font-size: 0.775rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .about-hero h1,
    .faq-hero h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .service-work-card-body {
        padding: 1.25rem 1.5rem 1.5rem;
    }
}
