/* ==========================================================================
   CINE BLEND - DESIGN SYSTEM & CUSTOM CSS
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Color Palette */
    --color-bg-deep: #08090d;
    --color-bg-card: rgba(18, 20, 30, 0.75);
    --color-bg-card-hover: rgba(26, 29, 43, 0.85);
    --color-bg-alternate: #0c0e14;
    --color-border-glass: rgba(255, 255, 255, 0.07);
    --color-border-glow: rgba(229, 173, 53, 0.3);
    
    --color-text-primary: #f5f6fa;
    --color-text-secondary: #a0a6b5;
    --color-text-muted: #646a78;
    
    /* Accents */
    --color-accent: #e5ad35; /* Electric Gold */
    --color-accent-hover: #c99324;
    --color-accent-rgb: 229, 173, 53;
    --color-secondary-accent: #ff6f3c; /* Sunset Orange */
    --color-gradient-hero: linear-gradient(135deg, #e5ad35 0%, #ff6f3c 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Details */
    --container-max-width: 1200px;
    --header-height: 80px;
    
    /* Shadow & Glass Effects */
    --glass-blur: 16px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(229, 173, 53, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

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

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

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

/* ==========================================================================
   UTILITY & STRUCTURAL LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7rem 0;
}

.alternate-bg {
    background-color: var(--color-bg-alternate);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

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

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

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

/* Section Headers */
.section-header {
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

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

/* Gradient text */
.gradient-text {
    background: var(--color-gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-gradient-hero);
    color: #08090d;
    box-shadow: 0 4px 15px rgba(229, 173, 53, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 173, 53, 0.45);
}

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

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

.btn-sm {
    padding: 0.65rem 1.4rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 100;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

/* Header scrolled state */
.site-header.scrolled {
    background: rgba(8, 9, 13, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 70px;
    border-bottom: 1px solid var(--color-border-glass);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    color: var(--color-accent);
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.15em;
    color: var(--color-text-primary);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gradient-hero);
    transition: var(--transition-smooth);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Hamburger button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 110;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hamburger active transformation */
.mobile-menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #0b0c12;
    border-left: 1px solid var(--color-border-glass);
    z-index: 150;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.drawer-close {
    cursor: pointer;
    color: var(--color-text-secondary);
}

.drawer-close:hover {
    color: var(--color-text-primary);
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    display: block;
}

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

.drawer-link.btn {
    text-align: center;
    color: #08090d;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(4px);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 9, 13, 0.45) 0%, rgba(8, 9, 13, 0.95) 100%);
    z-index: 1;
}

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

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: rgba(229, 173, 53, 0.08);
    border: 1px solid rgba(229, 173, 53, 0.2);
    color: var(--color-accent);
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
}

.mouse-icon {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mouse-icon:hover {
    border-color: var(--color-accent);
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 2px;
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   ABOUT & INTERACTIVE DECORATION
   ========================================================================== */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.stat-item {
    border-left: 2px solid var(--color-accent);
    padding-left: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    display: block;
    color: var(--color-text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.about-interactive {
    position: relative;
    display: flex;
    justify-content: center;
}

.interactive-card-wrapper {
    position: relative;
    width: 85%;
}

.decorative-card {
    border: 1px solid var(--color-border-glass);
}

.decorative-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--color-accent), transparent 60%);
    z-index: -1;
    border-radius: 20px;
    opacity: 0.15;
    transition: var(--transition-smooth);
}

.decorative-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    color: var(--color-accent);
    flex-shrink: 0;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
.services-grid {
    margin-top: 1.5rem;
}

.service-card {
    transition: var(--transition-bounce);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--color-bg-card-hover);
    border-color: var(--color-border-glow);
}

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(229, 173, 53, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--color-gradient-hero);
    color: #08090d;
    box-shadow: 0 4px 15px rgba(229, 173, 53, 0.3);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

.service-card:hover .service-link {
    color: var(--color-text-primary);
}

/* ==========================================================================
   GEAR CARDS
   ========================================================================== */
.gear-card {
    padding: 3rem;
}

.gear-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-glass);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
}

.gear-icon-wrapper {
    color: var(--color-accent);
    margin-bottom: 2rem;
    display: inline-block;
}

.gear-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.gear-specs {
    color: var(--color-accent);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.gear-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Middle card decorative glow */
.glass-card-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gradient-hero);
}

/* ==========================================================================
   PORTFOLIO FILTER & GALLERY
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    padding: 0.65rem 1.75rem;
    border-radius: 50px;
    border: 1px solid var(--color-border-glass);
    background: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: rgba(229, 173, 53, 0.4);
    color: var(--color-text-primary);
}

.filter-btn.active {
    background: var(--color-accent);
    color: #08090d;
    border-color: var(--color-accent);
    box-shadow: 0 4px 15px rgba(229, 173, 53, 0.2);
}

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

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border-glass);
}

.portfolio-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 9, 13, 0.95) 0%, rgba(8, 9, 13, 0.4) 60%, rgba(8, 9, 13, 0.1) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.portfolio-info {
    transform: translateY(20px);
    transition: var(--transition-smooth);
    width: 100%;
}

.portfolio-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.portfolio-item-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-item-desc {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.portfolio-view-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #08090d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hover effects */
.portfolio-item:hover .portfolio-img {
    transform: scale(1.08);
}

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

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

/* ==========================================================================
   CONTACT SECTION & REDESIGNED FORMS (TOP ALIGNED LABELS)
   ========================================================================== */
.info-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.contact-form-card {
    padding: 3.5rem 3rem;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.form-header p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Redesigned Form Fields & Label Spacing */
.form-group {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 0.6rem;
    text-align: left;
    pointer-events: none;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-text-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.form-control:focus {
    border-color: rgba(229, 173, 53, 0.6);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(229, 173, 53, 0.1);
}

/* Textarea custom settings */
.textarea-control {
    resize: none;
}

/* Select Box custom style */
.select-group {
    width: 100%;
    position: relative;
}

.select-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-color: rgba(18, 20, 30, 0.4);
}

.select-group select option {
    background-color: #0d0f17;
    color: var(--color-text-primary);
}

/* Select arrow positioning and centering */
.select-group::after {
    content: '';
    position: absolute;
    bottom: 1.4rem;
    right: 1.25rem;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-text-secondary);
    border-bottom: 2px solid var(--color-text-secondary);
    transform: rotate(45deg);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.select-group:focus-within::after {
    transform: rotate(-135deg);
    border-color: var(--color-accent);
}

/* Date control specifics */
input[type="date"] {
    position: relative;
    background-color: rgba(18, 20, 30, 0.4);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.8);
    cursor: pointer;
}

/* Error messages and states */
.error-msg {
    position: absolute;
    bottom: -1.35rem;
    left: 0.25rem;
    font-size: 0.75rem;
    color: var(--color-secondary-accent);
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.form-control.error {
    border-color: rgba(255, 111, 60, 0.4);
    background: rgba(255, 111, 60, 0.02);
}

.form-control.error ~ .error-msg {
    opacity: 1;
    transform: translateY(0);
}

/* Form Submit Loading State */
.submit-spinner {
    display: none;
    animation: rotateSpinner 1s linear infinite;
    margin-left: 0.75rem;
}

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

.btn-submit.loading span {
    opacity: 0.8;
}

.btn-submit.loading .submit-spinner {
    display: inline-block;
}

/* Success Overlay card transition */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0f17;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.success-icon-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(229, 173, 53, 0.1);
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.success-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.success-intro {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.success-details-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.success-details-summary h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border-glass);
    padding-bottom: 0.5rem;
}

.success-details-summary p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.success-details-summary p:last-child {
    margin-bottom: 0;
}

.success-details-summary strong {
    color: var(--color-text-primary);
}

/* Background form card glow */
.form-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: #050609;
    border-top: 1px solid var(--color-border-glass);
    padding: 5rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 320px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-glass);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link-icon:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(229, 173, 53, 0.05);
    transform: translateY(-3px);
}

.footer-grid h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

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

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

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

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

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Stagger cards animation delay loop */
.reveal-on-scroll[style*="--order"] {
    transition-delay: calc(var(--order) * 0.1s);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE STYLING)
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Layout */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    /* Navigation Drawer Trigger Show */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .btn-nav {
        display: none;
    }
    
    /* Hero scaling */
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Interactive about box scaling */
    .interactive-card-wrapper {
        width: 100%;
    }
    
    .stat-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-card {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .portfolio-filters {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .filter-btn {
        width: calc(50% - 0.5rem);
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        text-align: center;
    }
}
