/* ==========================================================================
   HOUSTON VIDEO EDITING - PREMIUM DESIGN SYSTEM & CUSTOM CSS
   ========================================================================== */
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');
/* CSS Variables & Tokens */
:root {
    /* Color Palette */
    --bg-main: #090b0f;
    --bg-card: #131722;
    --bg-card-hover: #1b2030;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 242, 254, 0.15);
    
    --primary-cyan: #52A8BF;
    --primary-blue: #4facfe;
    --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    --primary-gradient-hover: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(180deg, #131722 0%, #090b0f 100%);
    
    --text-primary: #f8fafc;
    --text-secondary: #555;
    --text-muted: #64748b;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
    --shadow-glow-hover: 0 0 35px rgba(0, 242, 254, 0.4);
    
    /* Layout Constants */
    --container-max-width: 1280px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    /* background-color: var(--bg-main); */
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}
button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}
ul {
    list-style: none;
}
/* Grid & Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 5rem 0;
    position: relative;
}
.mgt-space {
    margin: 30px auto 0 auto;
}
.section-dark {
    background-color: var(--bg-main);
}
.section-card {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
/* Glassmorphism Class */
.glass {
    background: rgba(19, 23, 34, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
}
/* Typography & Titles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-cyan);
    margin-bottom: 0.75rem;
    display: block;
}
.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--primary-cyan);

}
.section-desc {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 700px;
    margin-bottom: 3.5rem;
}
.text-center {
    text-align: center;
}
.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}
/* Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-normal);
    gap: 0.5rem;
}
.btn-primary {
    background: var(--primary-gradient);
    color: #090b0f;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
}
.btn-primary:hover {
    background: var(--primary-gradient-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    transform: translateY(-2px);
}
.btn-link {
    color: var(--primary-cyan);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 2px;
}
.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-cyan);
    transition: var(--transition-fast);
}
.btn-link:hover::after {
    width: 100%;
}
.btn-link svg {
    transition: var(--transition-fast);
}
.btn-link:hover svg {
    transform: translateX(4px);
}
/* Header & Navigation */
.header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid transparent;
}
.header.sticky {
    height: 70px;
    background: rgba(9, 11, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}
.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.high-quality-section .section-desc {
max-width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}
.logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary-cyan);
    fill: none;
    stroke-width: 2;
}
.logo-text span {
    color: var(--primary-cyan);
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-top: -2px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition-fast);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.phone-btn {
    border: 1px solid rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.05);
    color: var(--primary-cyan);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}
.phone-btn:hover {
    background: var(--primary-gradient);
    color: #090b0f;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}
.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}
/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 680px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--primary-cyan);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 4.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-desc {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 4rem;
}
/* Stats Row inside Hero/Bottom */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    flex-shrink: 0;
}
.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}
/* Partners Logo Banner */
.partners {
    background: #0b0d12;
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}
.partners-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.partners-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem 1.5rem;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    opacity: 0.35;
    transition: var(--transition-fast);
}
.partner-logo:hover {
    opacity: 0.8;
}
.partner-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-card {
    border-radius: 20px;
    overflow: hidden;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(21, 25, 34, 0) 0%, rgba(9, 11, 15, 0.8) 100%); */
    z-index: 1;
}
.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    z-index: 0;
}
.service-card-top, .service-card-bottom {
    position: relative;
    z-index: 2;
}
.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
    transition: var(--transition-normal);
}
.service-icon-box svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}
.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}
.service-desc {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
/* Card Hover States */
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 242, 254, 0.05);
}
.service-card:hover .service-card-bg {
    opacity: 0.28;
    transform: scale(1.08);
}
.service-card:hover .service-icon-box {
    background: var(--primary-gradient);
    color: #090b0f;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}
.service-card:hover .service-title {
    color: var(--primary-cyan);
}
/* Why Choose Us & Advantage Section */
.advantage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
.advantage-content .section-title {
    margin-bottom: 2rem;
}
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.feature-check {
    color: var(--primary-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}
.feature-check svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}
.feature-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}
.feature-text strong {
    color: var(--text-primary);
    font-weight: 600;
}
/* Team Video Mockup */
.team-media-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    aspect-ratio: 16 / 9;
}
.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.team-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 11, 15, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}
.play-button-outer {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090b0f;
    box-shadow: var(--shadow-glow);
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}
.play-button-outer svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-left: 4px;
}
.team-media-label {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.team-media-wrapper:hover .team-image {
    transform: scale(1.03);
}
.team-media-wrapper:hover .play-button-outer {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-hover);
}
.team-media-wrapper:hover .team-media-overlay {
    background: rgba(9, 11, 15, 0.3);
}
/* Advantage Stats Grid */
.advantage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.adv-stat-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.adv-stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.02) 0%, rgba(79, 172, 254, 0) 100%);
}
.adv-stat-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.adv-stat-icon {
    color: var(--primary-cyan);
}
.adv-stat-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}
.adv-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}
.adv-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}
/* Process Timeline Section */
.process-timeline {
    position: relative;
    margin-top: 4rem;
}
.process-line {
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border-color) 0px, var(--border-color) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
.process-step {
    text-align: center;
}
.process-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
    position: relative;
    transition: var(--transition-normal);
}
.process-step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #090b0f;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 242, 254, 0.3);
}
.process-icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.8;
}
.process-step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-cyan);
}
.process-step-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 0 0.5rem;
}
/* Process Step Hover */
.process-step:hover .process-icon-wrapper {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
/* Featured Work / Portfolio Section */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}
.portfolio-header .section-desc {
    margin-bottom: 0;
}
.portfolio-tabs {
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.375rem;
    border-radius: 50px;
    flex-wrap: wrap;
}
.portfolio-tab {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}
.portfolio-tab:hover {
    color: var(--text-primary);
}
.portfolio-tab.active {
    background: var(--primary-gradient);
    color: #090b0f;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}
.portfolio-slider-wrapper {
    position: relative;
    overflow: hidden;
}
.portfolio-slider {
    display: flex;
    gap: 2rem;
    transition: transform var(--transition-slow);
}
.portfolio-slide {
    min-width: calc((100% - 6rem) / 4);
    max-width: calc((100% - 6rem) / 4);
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/5;
}
.portfolio-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.portfolio-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(9, 11, 15, 0.95) 0%, rgba(9, 11, 15, 0.4) 60%, rgba(9, 11, 15, 0) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(10px);
    transition: var(--transition-normal);
}
.portfolio-slide-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}
.portfolio-slide-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
.portfolio-slide-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
}
.portfolio-slide-play svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-left: 2px;
}
.portfolio-slide:hover .portfolio-slide-img {
    transform: scale(1.05);
}
.portfolio-slide:hover .portfolio-slide-overlay {
    transform: translateY(0);
}
.portfolio-slide:hover .portfolio-slide-play {
    opacity: 1;
    transform: scale(1);
    background: var(--primary-gradient);
    border-color: transparent;
    color: #090b0f;
    box-shadow: var(--shadow-glow);
}
/* Slider Controls */
.slider-ctrl-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}
.slider-ctrl-btn:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    background: rgba(0, 242, 254, 0.03);
}
.slider-controls {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}
.slider-controls-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
/* Testimonials Section */
.testimonials-slider-container {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform var(--transition-slow);
}
.testimonial-card {
    min-width: calc((100% - 2rem) / 2);
    max-width: calc((100% - 2rem) / 2);
    flex-shrink: 0;
    padding: 3rem;
    border-radius: 24px;
    position: relative;
}
.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: var(--primary-cyan);
    font-size: 6rem;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.stars-row {
    color: #f1c40f;
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}
.stars-row svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.testimonial-text {
    font-size: 1.0625rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 242, 254, 0.2);
}
.author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}
.author-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
/* FAQ Accordion Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}
.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    transition: var(--transition-fast);
}
.faq-toggle-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}
.faq-toggle-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
    transition: transform var(--transition-normal);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow) cubic-bezier(0, 1, 0, 1);
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.faq-answer-inner {
    padding: 0 2rem 1.5rem;
}
/* Active FAQ state */
.faq-item.active {
    border-color: rgba(0, 242, 254, 0.25);
    background: rgba(19, 23, 34, 0.9);
}
.faq-item.active .faq-question {
    color: var(--primary-cyan);
}
.faq-item.active .faq-toggle-icon {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #090b0f;
    box-shadow: var(--shadow-glow);
}
.faq-item.active .faq-toggle-icon svg {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 500px; /* high enough value for content */
    transition: max-height var(--transition-slow) cubic-bezier(1, 0, 1, 0);
}
/* Footer & Bottom CTA Banner */
.footer-cta {
    position: relative;
    border-radius: 30px;
    padding: 5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: -4rem;
    z-index: 10;
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(0, 242, 254, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 0% 0%, rgba(79, 172, 254, 0.08) 0%, transparent 40%);
}
.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}
.cta-left {
    max-width: 600px;
}
.cta-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.cta-desc {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.cta-trust-items {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
}
.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.cta-trust-icon {
    color: var(--primary-cyan);
}
.cta-trust-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}
/* Main Footer Area */
.footer-main {
    background-color: #06070a;
    border-top: 1px solid var(--border-color);
    padding: 10rem 0 3rem; /* Extra top padding to account for overlapping CTA */
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}
.footer-col-about .logo {
    margin-bottom: 1.5rem;
}
.footer-about-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    position: relative;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}
.footer-links a:hover {
    color: var(--primary-cyan);
    transform: translateX(4px);
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}
.footer-contact-icon {
    color: var(--primary-cyan);
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-legal-links {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-legal-links a:hover {
    color: var(--text-primary);
}
/* ==========================================================================
   RESPONSIVE STYLES (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1200px) {
    .portfolio-slide {
        min-width: calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }
}
@media (max-width: 991px) {
    html {
        font-size: 15px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Advantage */
    .advantage {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .team-media-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Process */
    .process-line {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 1.5rem;
    }
    
    /* Portfolio */
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .portfolio-slide {
        min-width: calc((100% - 2rem) / 2);
        max-width: calc((100% - 2rem) / 2);
    }
    
    /* Testimonials */
    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    /* Footer */
    .footer-cta {
        padding: 4rem 3rem;
    }
    
    .cta-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}
@media (max-width: 768px) {
    /* Navigation Menu Toggle */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(9, 11, 15, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 4rem 3rem;
        transition: var(--transition-normal);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-nav-toggle {
        display: flex;
        z-index: 1000;
    }
    
    /* When active, change toggle icon to X */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-actions .phone-btn {
        display: none; /* Let mobile menu or other actions handle contact details */
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* Process */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Partners */
    .partners-slider {
        justify-content: center;
        gap: 2rem;
    }
    
    .partner-logo {
        height: 28px;
    }
}
@media (max-width: 576px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-slide {
        min-width: 100%;
        max-width: 100%;
    }
    
    .cta-trust-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-main {
        padding-top: 12rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
