/* ============================================
   EDGE ENTERPRISE LLC - PREMIUM WEBSITE
   Custom Design System - No Templates
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #D4A853;
    --primary-dark: #B8922E;
    --primary-light: #E8C876;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --dark-5: #2A2A2A;
    --light: #F5F0E8;
    --light-2: #E8E0D4;
    --gray: #888888;
    --gray-light: #AAAAAA;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-strong: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.2);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --container: 1280px;
    --nav-height: 80px;
}

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

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

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; display: block; }
button { cursor: none; }

::selection {
    background: var(--primary);
    color: var(--dark);
}

/* ---------- Custom Cursor ---------- */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.5;
}

body.cursor-hover .cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-light);
}

body.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--primary-light);
    opacity: 0.3;
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo-img {
    width: 180px;
    margin: 0 auto 40px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--dark-4);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    animation: preloaderBar 2s ease-in-out forwards;
}

@keyframes preloaderBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

.preloader-text {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 var(--glass-border);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    transition: opacity var(--transition);
}

.nav-logo-accent {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
    display: block;
    margin-top: -2px;
}

.nav-logo:hover .nav-logo-text {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gray-light);
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.nav-link-cta {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

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

.nav-link-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon {
    height: 45px;
    filter: drop-shadow(0 2px 8px rgba(212, 168, 83, 0.3));
    transition: transform var(--transition);
}

.nav-logo:hover .nav-icon {
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
    display: block;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
}

.hero-video-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
    animation: heroFadeIn 1.2s ease-out 2.6s both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logo-large {
    animation: heroLogoIn 1s ease-out 2.8s both;
}

@keyframes heroLogoIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-tagline-line {
    overflow: hidden;
}

.hero-tagline {
    animation: heroTextSlide 0.8s ease-out 3s both;
}

.hero-tagline-accent {
    animation: heroTextSlide 0.8s ease-out 3.2s both;
}

@keyframes heroTextSlide {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    animation: heroFadeIn 0.7s ease-out 3.4s both;
}

.hero-ctas {
    animation: heroFadeIn 0.6s ease-out 3.6s both;
}

.hero-scroll-indicator {
    animation: heroFadeIn 0.6s ease-out 3.8s both;
}

/* Fallback gradient when no video */
.hero-video-wrap {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1510 40%, #0d0d0d 100%);
}

.hero-logo-large {
    margin-bottom: 40px;
}

.hero-logo-img {
    width: 320px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 40px rgba(212, 168, 83, 0.2));
}

.hero-text-wrap {
    margin-bottom: 24px;
}

.hero-tagline-line {
    overflow: hidden;
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -1px;
}

.hero-tagline-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    border: none;
    font-family: var(--font-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

.hero-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-side-info {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-side-divider {
    width: 40px;
    height: 1px;
    background: var(--gray);
}

/* ---------- Sections Common ---------- */
.section {
    padding: 140px 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-accent {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

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

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---------- About Section ---------- */
.section-about {
    background: var(--dark);
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all var(--transition);
}

.about-feature:hover {
    background: var(--glass-strong);
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateX(8px);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 168, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 13px;
    color: var(--gray);
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

.about-image-card:hover .about-image {
    transform: scale(1.05);
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px 28px;
}

.about-badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-badge-text {
    font-size: 13px;
    color: var(--gray-light);
    letter-spacing: 0.5px;
}

/* ---------- Services Section ---------- */
.section-services {
    background: var(--dark-2);
}

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

.service-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

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

.service-card:hover {
    background: var(--glass-strong);
    border-color: rgba(212, 168, 83, 0.15);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

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

.service-card-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: var(--font-display);
    line-height: 1;
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(212, 168, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-card-icon {
    background: rgba(212, 168, 83, 0.2);
    transform: scale(1.1);
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.service-card-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin-top: 24px;
    transition: width var(--transition);
}

.service-card:hover .service-card-line {
    width: 80px;
}

/* ---------- Projects Section ---------- */
.section-projects {
    background: var(--dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
}

.project-card-large {
    grid-column: span 2;
}

.project-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

.project-card:hover .project-card-image {
    transform: scale(1.08);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: background var(--transition);
}

.project-card:hover .project-card-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(212, 168, 83, 0.1) 100%);
}

.project-card-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.project-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.project-card-location {
    font-size: 14px;
    color: var(--gray);
}

/* ---------- Stats Section ---------- */
.section-stats {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.stats-bg-video {
    position: absolute;
    inset: 0;
}

.stats-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(4px);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 40px 20px;
    border-radius: var(--radius);
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    display: inline;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    display: inline;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-light);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- Process Section ---------- */
.section-process {
    background: var(--dark-2);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-line {
    position: absolute;
    top: 0;
    left: 32px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

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

.process-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.process-step:hover .process-step-number {
    background: var(--primary);
    color: var(--dark);
}

.process-step-content {
    padding-top: 12px;
}

.process-step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* ---------- Testimonials Section ---------- */
.section-testimonials {
    background: var(--dark);
}

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

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: var(--glass-strong);
    transform: translateY(-6px);
    border-color: rgba(212, 168, 83, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--primary);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--light-2);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 15px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray);
}

/* ---------- CTA Section ---------- */
.section-cta {
    padding: 100px 0;
    background: var(--dark-2);
}

.cta-block {
    text-align: center;
    padding: 80px 60px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.08), rgba(212, 168, 83, 0.02));
    border: 1px solid rgba(212, 168, 83, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.1), transparent);
    border-radius: 50%;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 17px;
    color: var(--gray-light);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ---------- Contact Section ---------- */
.section-contact {
    background: var(--dark);
}

.contact-desc {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 168, 83, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
    font-size: 14px;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

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

/* Contact Form */
.contact-form-wrap {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--dark-5);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 15px;
    padding: 12px 0;
    outline: none;
    transition: border-color var(--transition);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 14px;
    color: var(--gray);
    pointer-events: none;
    transition: all var(--transition);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -16px;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.form-group input:focus ~ .form-line,
.form-group textarea:focus ~ .form-line,
.form-group select:focus ~ .form-line {
    width: 100%;
}

.form-group select option {
    background: var(--dark-3);
    color: var(--light);
}

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

/* ---------- Footer ---------- */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links a,
.footer-links span {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card-large { grid-column: span 2; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-height: 70px; }

    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
    a, button { cursor: pointer; }

    .container { padding: 0 24px; }
    .section { padding: 80px 0; }

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform var(--transition);
    }

    .nav-links.active { transform: translateX(0); }

    .nav-link { font-size: 24px; }
    .nav-toggle { display: flex; }

    .hero-logo-img { width: 220px; }
    .hero-tagline { font-size: clamp(24px, 6vw, 40px); }
    .hero-side-info { display: none; }

    .section-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .project-card-large { grid-column: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-number { font-size: 40px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .contact-form-wrap { padding: 32px 24px; }
    .cta-block { padding: 48px 24px; }

    .about-image { height: 350px; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
}
