/* ============================
   DolbyTo - BairesDev Style Landing Page
   Light theme, clean, professional
   ============================ */

/* CSS Variables */
:root {
    /* Colors - DolbyTo Brand */
    --primary-orange: #E46410;
    --primary-orange-dark: #C4550D;
    --primary-orange-light: #FEF3EB;
    
    --primary-blue: #169FDB;
    --primary-blue-dark: #1287BA;
    --primary-blue-light: #E8F6FC;
    
    --text-dark: #1A1A2E;
    --text-medium: #4A4A68;
    --text-light: #6B6B80;
    --text-muted: #9999A8;
    
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FC;
    --bg-gray: #F0F2F5;
    
    --border-color: #E5E7EB;
    --border-light: #F0F0F0;
    
    --success: #00C853;
    --warning: #E46410;
    --error: #F44336;
    
    /* Typography */
    --font-main: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition: 0.1s ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.highlight {
    color: var(--text-dark);
}

.dot {
    color: var(--primary-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-nav {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    padding: 10px 24px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.1s ease, border-color 0.1s ease, color 0.1s ease;
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .btn-nav {
    background: var(--primary-blue);
    color: white;
    border: none;
}

.navbar.scrolled .btn-nav:hover {
    background: var(--primary-blue-dark);
}

.btn-full {
    width: 100%;
}

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

/* ============================
   Navigation
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 8px 0;
    transition: background 0.1s ease, border-color 0.1s ease, box-shadow 0.1s ease;
}

/* Navbar scrolled state - white background */
.navbar.scrolled {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-img {
    height: 48px;
    width: auto;
    scale: 3;
    max-width: none;
    transition: filter 0.1s ease;
    filter: brightness(0) invert(1); /* Makes the logo white when navbar is transparent */
}

.navbar.scrolled .logo-img {
    filter: none; /* Shows original colors when scrolled */
}

.footer-logo-img {
    filter: none; /* Footer logo always shows original colors */
    height: 200px;
    scale: 2;
    filter: brightness(0) invert(1) !important;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.1s ease;
}

.nav-links a:hover {
    color: #FFFFFF;
}

.navbar.scrolled .nav-links a {
    color: var(--text-medium);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--text-dark);
}

/* ============================
   Hero Section
   ============================ */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.85) 0%, 
        rgba(26, 26, 46, 0.75) 50%,
        rgba(22, 159, 219, 0.4) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%,
        rgba(26, 26, 46, 0.3) 100%);
    z-index: 1;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 48px;
    align-items: center;
}

.hero-content {
    padding-top: 20px;
}


.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Trust Badges */
.trust-badges {
    margin-bottom: 40px;
}

.clutch-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.clutch-logo {
    font-size: 24px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
}

.clutch-logo svg {
    width: 24px;
    height: 24px;
}

.clutch-info {
    display: flex;
    flex-direction: column;
}

.clutch-rating {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.clutch-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Client Logos */
.clients-section {
    margin-top: 32px;
}

.clients-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.client-logo:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Form */
.hero-form {
    position: sticky;
    top: 100px;
}

.form-card {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-main);
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: var(--transition);
}

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

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

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

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

/* ============================
   Reviews Section
   ============================ */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

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

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-header {
    margin-bottom: 16px;
}

.review-company {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.review-project {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-name {
    font-size: 13px;
    color: var(--text-light);
}

.review-content {
    margin-bottom: 20px;
}

.review-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.review-text {
    font-size: 15px;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.6;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.reviewer-title {
    font-size: 12px;
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    color: var(--primary-orange);
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 14px;
    height: 14px;
}

.rating-score {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================
   Services Section
   ============================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.section-title-expertise {
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 64px;
    line-height: 1.3;
}

.services-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 60px;
    margin-bottom: 48px;
}

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

.service-category {
    text-align: left;
}

.service-category h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 15px;
    color: var(--text-medium);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:hover {
    color: var(--text-dark);
    padding-left: 8px;
}

.service-item {
    text-align: left;
}

.service-icon-minimal {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-minimal svg {
    width: 28px;
    height: 28px;
}

/* Icon Colors - Core Remix Style */
.service-icon-minimal.orange svg {
    stroke: var(--primary-orange);
}

.service-icon-minimal.orange svg circle[fill="currentColor"],
.service-icon-minimal.orange svg rect[fill="currentColor"],
.service-icon-minimal.orange svg path[fill="currentColor"] {
    fill: var(--primary-orange);
}

.service-icon-minimal.yellow svg {
    stroke: #D4A944;
}

.service-icon-minimal.yellow svg circle[fill="currentColor"],
.service-icon-minimal.yellow svg rect[fill="currentColor"],
.service-icon-minimal.yellow svg path[fill="currentColor"] {
    fill: #D4A944;
}

.service-icon-minimal.blue svg {
    stroke: var(--primary-blue);
}

.service-icon-minimal.blue svg circle[fill="currentColor"],
.service-icon-minimal.blue svg rect[fill="currentColor"],
.service-icon-minimal.blue svg path[fill="currentColor"] {
    fill: var(--primary-blue);
}

.service-icon-minimal.coral svg {
    stroke: #E8836B;
}

.service-icon-minimal.coral svg circle[fill="currentColor"],
.service-icon-minimal.coral svg rect[fill="currentColor"],
.service-icon-minimal.coral svg path[fill="currentColor"] {
    fill: #E8836B;
}

.service-icon-minimal.teal svg {
    stroke: #4ECDC4;
}

.service-icon-minimal.teal svg circle[fill="currentColor"],
.service-icon-minimal.teal svg rect[fill="currentColor"],
.service-icon-minimal.teal svg path[fill="currentColor"] {
    fill: #4ECDC4;
}

.service-icon-minimal.peach svg {
    stroke: #E8A87C;
}

.service-icon-minimal.peach svg circle[fill="currentColor"],
.service-icon-minimal.peach svg rect[fill="currentColor"],
.service-icon-minimal.peach svg path[fill="currentColor"] {
    fill: #E8A87C;
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.service-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.more-text {
    text-align: right;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
}

/* ============================
   Tech Stack Marquee
   ============================ */
.tech-section {
    padding: 60px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.tech-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.tech-marquee {
    overflow: hidden;
    padding: 16px 0;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
}

.tech-marquee.reverse .marquee-track {
    animation-direction: reverse;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-medium);
    white-space: nowrap;
    padding: 12px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.tech-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

/* ============================
   Benefits Section
   ============================ */
.benefits-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.benefits-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

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

.benefit-card {
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
}

.benefit-icon.orange svg {
    stroke: var(--primary-orange);
}

.benefit-icon.orange svg circle[fill="currentColor"],
.benefit-icon.orange svg rect[fill="currentColor"],
.benefit-icon.orange svg path[fill="currentColor"] {
    fill: var(--primary-orange);
}

.benefit-icon.yellow svg {
    stroke: #D4A944;
}

.benefit-icon.yellow svg circle[fill="currentColor"],
.benefit-icon.yellow svg path[fill="currentColor"] {
    fill: #D4A944;
}

.benefit-icon.blue svg {
    stroke: var(--primary-blue);
}

.benefit-icon.blue svg circle[fill="currentColor"],
.benefit-icon.blue svg path[fill="currentColor"] {
    fill: var(--primary-blue);
}

.benefit-icon.teal svg {
    stroke: #4ECDC4;
}

.benefit-icon.teal svg circle[fill="currentColor"],
.benefit-icon.teal svg path[fill="currentColor"] {
    fill: #4ECDC4;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.cta-text {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* ============================
   About Section
   ============================ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

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

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

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

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 18px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
}

.badge-icon svg {
    width: 18px;
    height: 18px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================
   Transformation Section
   ============================ */
.transformation-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-title-transform {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle-transform {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 28px;
}

.transformation-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.transform-card-new {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.transform-card-new.before {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
}

.transform-card-new.after {
    background: var(--primary-orange-light);
    border: 2px solid var(--primary-orange);
}

.transform-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.before-badge {
    background: var(--bg-gray);
    color: var(--text-medium);
}

.after-badge {
    background: var(--primary-orange);
    color: white;
}

.transform-list-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transform-list-new li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-medium);
}

.transform-card-new.after .transform-list-new li {
    color: var(--text-dark);
}

.bullet-square {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 5px;
}

.check-circle {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-orange);
}

.check-circle svg {
    width: 18px;
    height: 18px;
}

/* Dream Result - New Style */
.dream-result-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
}

.dream-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 6px;
}

.dream-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.dream-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
}

.dream-arrow svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary-orange);
}

/* Old styles kept for compatibility */
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 48px;
}

.transform-card {
    padding: 32px;
    border-radius: var(--radius-lg);
}

.dream-result {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--primary-blue-light) 100%);
    border-radius: var(--radius-xl);
}

.dream-icon {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.dream-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary-orange);
}

.dream-result h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.dream-result p {
    font-size: 16px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   Methodology Section
   ============================ */
.methodology-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.methodology-section .section-title,
.methodology-section .section-subtitle {
    text-align: center;
}

/* Pillars Carousel */
.pillars-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.pillars-carousel {
    overflow: hidden;
    flex: 1;
}

.pillars-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-btn:hover {
    border-color: var(--primary-orange);
    background: var(--primary-orange-light);
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    border-color: var(--border-color);
    background: var(--bg-white);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
}

.carousel-btn:hover svg {
    stroke: var(--primary-orange);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-indicators .indicator:hover {
    background: var(--primary-blue);
}

.carousel-indicators .indicator.active {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.pillars-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.pillar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    width: calc(33.333% - 16px);
    min-width: 320px;
    height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
}

.pillar-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pillar-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.pillar-card:nth-child(odd) .pillar-number {
    color: var(--primary-orange);
}

.pillar-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
    flex-shrink: 0;
}

.pillar-card > p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.pillar-deliverables {
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
    flex: 1;
    min-height: 0;
}

.pillar-deliverables strong {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.pillar-deliverables ul {
    margin-top: 0;
}

.pillar-deliverables li {
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.pillar-deliverables li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 14px;
}

/* ============================
   Process Section
   ============================ */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.process-section .section-title,
.process-section .section-subtitle {
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.process-step {
    text-align: center;
    padding: 32px;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-step:nth-child(2) .step-number {
    background: var(--primary-blue);
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================
   Contact Section
   ============================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.contact-content .section-title {
    text-align: left;
}

.contact-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    stroke: white;
}

.contact-feature span {
    font-size: 15px;
    color: var(--text-medium);
}

.contact-form-wrapper {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper.contact-form-compact {
    padding: 28px;
}

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

.contact-form-compact .contact-form {
    gap: 12px;
}

/* Form row for side-by-side inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form-compact .form-group input,
.contact-form-compact .form-group select,
.contact-form-compact .form-group textarea {
    padding: 11px 14px;
    font-size: 14px;
}

.contact-form-compact .form-group textarea {
    min-height: 70px;
}

/* reCAPTCHA placeholder */
.recaptcha-placeholder {
    min-height: 78px;
    background: var(--bg-gray);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recaptcha-placeholder::before {
    content: 'reCAPTCHA';
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================
   Footer
   ============================ */
.footer {
    padding: 60px 0 24px;
    background: var(--text-dark);
    color: white;
}

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

.footer .logo-img {
    filter: none;
    height: 120px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-img {
        height: 350px;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .services-grid-3col {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .section-title-expertise {
        font-size: 36px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .transformation-grid-new {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title-transform {
        font-size: 32px;
    }
    
    .dream-result-new {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .dream-arrow {
        margin-left: 0;
    }
    
    .transform-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
    
    .pillar-card {
        width: calc(33.333% - 16px);
        min-width: 300px;
        height: 400px;
        padding: 24px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid-minimal {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-grid-3col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title-expertise {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .service-category h3 {
        font-size: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .pillars-carousel-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    
    .pillars-carousel {
        width: 100%;
        order: 1;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .pillars-track {
        gap: 16px;
    }
    
    .pillar-card {
        width: 280px;
        min-width: 280px;
        height: auto;
        min-height: 380px;
        padding: 24px;
    }
    
    .pillars-grid {
        gap: 20px;
    }
    
    .pillar-number {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .pillar-card h3 {
        font-size: 17px;
    }
    
    .pillar-card > p {
        font-size: 14px;
    }
    
    .pillar-deliverables li {
        font-size: 13px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-form-wrapper.contact-form-compact {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .client-logos {
        gap: 16px;
    }
    
    .pillar-card {
        width: 100%;
        height: auto;
        min-height: 300px;
        padding: 24px;
    }
    
    .pillar-number {
        font-size: 34px;
    }
    
    .pillar-card h3 {
        font-size: 16px;
    }
    
    .pillar-card > p {
        font-size: 14px;
    }
    
    .pillar-deliverables li {
        font-size: 12px;
    }
}

/* ============================
   Mobile Menu Active State
   ============================ */
.nav-links.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.nav-links.mobile-active a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-medium) !important;
}

.nav-links.mobile-active a:hover {
    color: var(--primary-blue) !important;
}

.nav-links.mobile-active .btn-nav {
    text-align: center;
    margin-top: 8px;
    background: var(--primary-blue) !important;
    color: white !important;
    border: none !important;
}

.nav-links.mobile-active .btn-nav:hover {
    background: var(--primary-blue-dark) !important;
}
