/* Style CSS for After Clips Media Landing Page (Gold/Charcoal Theme) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #0A0A0A;
    --bg-card: #141416;
    --bg-card-hover: #1C1C1E;
    --border-color: #262629;
    --border-hover: rgba(254, 203, 36, 0.4);
    
    --color-primary: #FECB24; /* Bright Uber Yellow/Gold */
    --color-secondary: #D19E0E; /* Warm Gold Accent */
    --color-accent: #FFE277; /* Light Yellow Highlight */
    
    --text-main: #FFFFFF;
    --text-muted: #A3A3A3;
    --text-dark: #525252;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.text-gradient-purple {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 203, 36, 0.07) 0%, rgba(226, 164, 0, 0.02) 55%, rgba(0,0,0,0) 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Top Announcement Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, #FECB24 0%, #D19E0E 100%);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    position: relative;
}

.top-bar-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
}

.top-bar-cta {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: #000000;
    background: rgba(0, 0, 0, 0.12);
    border: 1.5px solid rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    padding: 6px 20px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.top-bar-cta:hover {
    background: rgba(0, 0, 0, 0.22);
    transform: scale(1.03);
}

.top-bar-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color var(--transition-fast);
}

.top-bar-close:hover {
    color: #000000;
}

.top-bar.hidden {
    display: none;
}

/* Header & Nav */
header {
    position: fixed;
    top: 46px; /* sits below the top-bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    background: rgba(10, 10, 10, 0.75);
    transition: top var(--transition-normal), padding var(--transition-normal);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.9);
}

header.no-topbar {
    top: 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #000000;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-normal);
}

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

.nav-cta-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(254, 203, 36, 0.25);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 203, 36, 0.45);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 220px 0 120px; /* extra top padding for topbar + header */
    background-image: linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, var(--bg-dark) 100%), url('assets/hero_bg.png?v=2');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(254, 203, 36, 0.08) 0%, rgba(0,0,0,0) 55%);
    z-index: 1;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.badge span {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
}

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

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(254, 203, 36, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(254, 203, 36, 0.45);
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
    transform: translateY(-3px);
}

/* Sections Base */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Industries Section */
.industries-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #101012 50%, var(--bg-dark) 100%);
}

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

.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(254, 203, 36, 0.05) 0%, rgba(0,0,0,0) 65%);
    transition: var(--transition-normal);
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(254, 203, 36, 0.08);
}

.industry-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    transition: var(--transition-normal);
}

.industry-card:hover .industry-icon-wrapper {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #000000;
    box-shadow: 0 4px 15px rgba(254, 203, 36, 0.3);
}

.industry-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.industry-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.industry-stat {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.industry-stat::before {
    content: '→';
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
}

.industry-card:hover .industry-stat::before {
    transform: translateX(4px);
}

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

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 203, 36, 0.25);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(254, 203, 36, 0.06);
}

.service-category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    align-self: flex-start;
    margin-bottom: 20px;
}

.service-category.creative {
    background: rgba(254, 203, 36, 0.1);
    color: var(--color-primary);
}

.service-category.growth {
    background: rgba(254, 203, 36, 0.1);
    color: var(--color-primary);
}

.service-category.technical {
    background: rgba(254, 203, 36, 0.1);
    color: var(--color-accent);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #101012 100%);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--color-primary);
    color: #000000;
    border-color: var(--color-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    min-height: 400px;
}

.portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.portfolio-item.reel {
    aspect-ratio: 9/16;
    max-width: 300px;
    margin: 0 auto;
}

.portfolio-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.55) 60%, rgba(10, 10, 10, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.portfolio-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-client {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(254, 203, 36, 0.15);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    color: var(--text-main);
    font-size: 1.5rem;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.portfolio-item:hover .play-button-overlay {
    background: var(--color-primary);
    color: #000000;
    box-shadow: 0 0 20px rgba(254, 203, 36, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Showcase Custom Styling */
.portfolio-reel-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

/* Modal Styling */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.video-modal-content.vertical {
    max-width: 420px;
    aspect-ratio: 9/16;
}

.video-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2010;
    transition: var(--transition-fast);
}

.video-modal-close:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

.video-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.simulated-video-player {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #141416 0%, #0a0a0a 100%);
    position: relative;
}

.simulated-video-player span {
    font-size: 1.25rem;
    margin-top: 16px;
    color: var(--text-muted);
}

.simulated-loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(254, 203, 36, 0.15);
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Interactive Growth Calculator Section */
.calc-section {
    background: var(--bg-dark);
}

.calc-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.calc-container::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(254, 203, 36, 0.05);
    filter: blur(80px);
    pointer-events: none;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
}

.form-label span.value-display {
    color: var(--color-primary);
}

.select-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-option {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.pill-option:hover {
    border-color: var(--text-muted);
}

.pill-option.active {
    background: rgba(254, 203, 36, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Slider Custom Styling */
.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.07);
    outline: none;
    margin: 15px 0;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    cursor: pointer;
    box-shadow: 0 0 10px rgba(254, 203, 36, 0.4);
    transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    background: #0D0D0F;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.calc-result-header {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.calc-metric {
    margin-bottom: 30px;
}

.calc-metric-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.calc-metric-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-primary);
}

.calc-metric-value.growth-percent {
    color: #FECB24; /* Unified theme ROI impact */
}

.calc-cta {
    margin-top: 20px;
    text-align: center;
}

.calc-cta p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Contact / Proposal Form Section */
.contact-section {
    background: linear-gradient(180deg, #101012 0%, var(--bg-dark) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-method-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(254, 203, 36, 0.05);
    border: 1px solid rgba(254, 203, 36, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.contact-method-details h4 {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-method-details p {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    position: relative;
}

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

.input-field {
    width: 100%;
    padding: 16px 20px;
    background: #0A0A0A;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all var(--transition-fast);
}

.input-field:focus {
    border-color: var(--color-primary);
    background: #0D0D0D;
    box-shadow: 0 0 10px rgba(254, 203, 36, 0.15);
}

select.input-field {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A3A3A3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

textarea.input-field {
    resize: vertical;
    min-height: 120px;
}

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

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox-group input {
    margin-top: 4px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.form-checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* Styled Alert/Success State inside Form */
.form-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease forwards;
}

.form-success-state.active {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(254, 203, 36, 0.1);
    border: 1px solid rgba(254, 203, 36, 0.3);
    border-radius: 50%;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(254, 203, 36, 0.2);
}

.success-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.success-desc {
    color: var(--text-muted);
    max-width: 450px;
    margin-bottom: 30px;
}

.success-receipt {
    background: #0A0A0A;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    text-align: left;
    margin-bottom: 30px;
}

.success-receipt h5 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.receipt-row span:first-child {
    color: var(--text-muted);
}

.receipt-row span:last-child {
    font-weight: 700;
    color: var(--color-primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Footer Section */
footer {
    background: #060607;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(254, 203, 36, 0.05);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-main);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calc-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-reel-container {
        flex-direction: column;
        align-items: center;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-normal);
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-cta-btn {
        display: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .calc-results {
        padding: 24px;
    }
    .calc-metric-value {
        font-size: 2.25rem;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
}

