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

:root {
    --bg-dark: #0a0a0b;
    --bg-card: #141416;
    --bg-hover: #1a1a1d;
    --text-primary: #f5f5f5;
    --text-secondary: #888;
    --accent: #00d4ff;
    --accent-glow: rgba(0, 212, 255, 0.15);
    --border: #222;
}

/* ========================================
   Base Styles
   ======================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ========================================
   Typography
   ======================================== */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-tag {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.highlight {
    color: var(--accent);
}

/* ========================================
   Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 5%;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.header.scrolled {
    border-bottom-color: var(--border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn-nav {
    background: var(--accent);
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 5% 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-tag {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero .btn {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

/* ========================================
   Hero Visual - Geometric Grid
   ======================================== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease 0.4s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.grid-container {
    position: relative;
    width: 400px;
    height: 400px;
}

/* Dot grid pattern */
.grid-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--border) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    opacity: 0.6;
}

/* Accent lines */
.grid-lines {
    position: absolute;
    inset: 0;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

.line-h {
    height: 1px;
    width: 100%;
}

.line-v {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

.line-1 {
    top: 30%;
    animation: lineSlide 8s ease-in-out infinite;
}

.line-2 {
    top: 70%;
    animation: lineSlide 8s ease-in-out infinite 2s;
}

.line-3 {
    left: 35%;
    animation: lineSlideV 8s ease-in-out infinite 1s;
}

.line-4 {
    left: 65%;
    animation: lineSlideV 8s ease-in-out infinite 3s;
}

@keyframes lineSlide {
    0%, 100% {
        opacity: 0;
        transform: translateX(-20%);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20%);
    }
}

@keyframes lineSlideV {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20%);
    }
    50% {
        opacity: 0.5;
        transform: translateY(20%);
    }
}

/* Glowing orb accent */
.grid-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Center accent square */
.grid-accent {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid var(--accent);
    opacity: 0.6;
    animation: rotateAccent 20s linear infinite;
}

.grid-accent::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid var(--accent);
    opacity: 0.8;
}

.grid-accent::after {
    content: '';
    position: absolute;
    inset: 30px;
    background: var(--accent);
    opacity: 0.3;
}

@keyframes rotateAccent {
    to {
        transform: translate(-50%, -50%) rotate(405deg);
    }
}

/* ========================================
   Responsive - Hero
   ======================================== */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        order: -1;
    }

    .grid-container {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .grid-container {
        width: 220px;
        height: 220px;
    }
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 10rem 5%;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Ambient background glow */
.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
    filter: blur(80px);
}

.services::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}

.services-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}

.services-glow-left {
    top: 30%;
    left: -10%;
}

.services .container {
    position: relative;
    z-index: 1;
    max-width: 1300px;
}

.services-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 3rem;
    flex: 1;
    max-width: 420px;
    position: relative;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, transparent 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px var(--accent-glow),
        0 0 80px rgba(0, 212, 255, 0.1);
}

/* .service-card:hover::before {
    opacity: 0.15;
} */

.service-number {
    display: inline-block;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-number {
    opacity: 1;
    transform: translateX(5px);
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ========================================
   Services Responsive
   ======================================== */
@media (max-width: 1100px) {
    .service-card {
        max-width: 360px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        max-width: 550px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 6rem 5%;
    }

    .service-card {
        padding: 2rem;
    }

    .service-card h3 {
        font-size: 1.35rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .service-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

.services h2,
.process h2 {
    text-align: center;
}

/* ========================================
   Process Section
   ======================================== */
/* ========================================
   Process Section
   ======================================== */
.process {
    padding: 12rem 5%;
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.process h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.process-zigzag {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Center connecting line */
.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent), var(--accent), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 10rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Left-aligned steps */
.step-left {
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
    text-align: right;
}

.step-left .step-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Right-aligned steps */
.step-right {
    justify-content: flex-start;
    padding-left: calc(50% + 2rem);
    text-align: left;
}

.step-right .step-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Center marker */
.step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.process-step:hover .step-marker {
    background: var(--accent);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateX(-50%) scale(1.2);
}

/* Step content */
.step-content {
    max-width: 350px;
}

.step-number {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    opacity: 0.5;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.process-step:hover .step-number {
    opacity: 1;
}

.step-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3 {
    color: var(--accent);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* ========================================
   Process Responsive
   ======================================== */
@media (max-width: 768px) {
    .process {
        padding: 6rem 5%;
    }

    .process h2 {
        margin-bottom: 3rem;
    }

    .process-line {
        left: 20px;
    }

    .process-step {
        padding-left: 60px;
        padding-right: 0;
        margin-bottom: 4rem;
    }

    .step-left,
    .step-right {
        justify-content: flex-start;
        text-align: left;
    }

    .step-left .step-content,
    .step-right .step-content {
        align-items: flex-start;
    }

    .step-marker {
        left: 20px;
        width: 20px;
        height: 20px;
        transform: translateX(-50%);
    }

    .process-step:hover .step-marker {
        transform: translateX(-50%) scale(1.2);
    }

    .step-content {
        max-width: 100%;
    }
}
/* ========================================
   Scroll Animations
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .btn-nav {
        display: none;
    }

    .hero {
        padding-top: 7rem;
    }

    .services,
    .process {
        padding: 5rem 5%;
    }

    .service-card {
        padding: 2rem;
    }
}
/* ========================================
   Work Section
   ======================================== */
.work {
    padding: 10rem 5%;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Ambient background glow */
.work::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.4;
    pointer-events: none;
    filter: blur(80px);
}

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

.work h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.work-content {
    max-width: 700px;
    margin: 0 auto;
}

.work-headline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
}

.work-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.work-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.work-point:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.point-marker {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.5rem;
}

.work-point p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.work-point:hover p {
    color: var(--text-primary);
}

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

.work-cta p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
/* ========================================
   Contact Page
   ======================================== */
.contact-page {
    min-height: 100vh;
    padding: 10rem 5% 6rem;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(60px);
}

.contact-glow-left {
    top: 10%;
    left: -10%;
}

.contact-glow-right {
    bottom: 10%;
    right: -10%;
}

.contact-glow-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    opacity: 0.5;
}

.contact-page .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.contact-page-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.contact-page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Sections */
.contact-page-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-section-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.contact-section-number {
    display: inline-block;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.contact-section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.contact-section-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Calendly Embed */
.calendly-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
}

.calendly-inline-widget {
    border-radius: 12px;
    overflow: hidden;
}

/* Divider */
.contact-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider-text {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Contact Grid (Form + Sidebar) */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
}

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

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group .optional {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

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

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.contact-info-icon {
    font-size: 1.25rem;
    line-height: 1;
}

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

.contact-info-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.contact-info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Next Steps */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.next-step {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.next-step-num {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
}

.next-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Footer */
.footer {
    padding: 4rem 5% 2rem;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

/* Brand Column */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-logo:hover {
    color: var(--accent);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Nav & Contact Columns */
.footer-nav h4,
.footer-contact h4 {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a,
.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-location {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-credit {
    opacity: 0.6;
}

/* ========================================
   Footer Responsive
   ======================================== */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 5% 1.5rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-nav,
    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav,
    .footer-contact {
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
    }
}

/* ========================================
   Contact Page Responsive
   ======================================== */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 8rem 5% 4rem;
    }

    .contact-page-header {
        margin-bottom: 3rem;
    }

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

    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .contact-info-sidebar {
        flex-direction: column;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .calendly-wrapper {
        padding: 1rem;
    }

    .calendly-inline-widget {
        height: 600px !important;
    }
}
/* ========================================
   Work Responsive
   ======================================== */
@media (max-width: 768px) {
    .work {
        padding: 6rem 5%;
    }

    .work h2 {
        margin-bottom: 3rem;
    }

    .work-headline {
        margin-bottom: 2rem;
    }

    .work-points {
        margin-bottom: 3rem;
    }

    .work-point {
        padding: 1rem 1.25rem;
    }

    .work-point p {
        font-size: 1rem;
    }
}