/* Studio Riviera - Styles CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --secondary: #00D9FF;
    --dark: #1a1a2e;
    --gray: #f8f9fa;
    --light-gray: #f8f9fa;
    --text: #333;
    --text-light: #666;
    --success: #00CC66;
    --warning: #FFC107;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 20px;
    padding-bottom: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    position: relative;
}

.logo {
    z-index: 1001;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(0, 102, 255, 0.08);
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .highlight {
    color: var(--secondary);
}

.hero p {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 18px);
    transition: all 0.3s;
    margin: 5px;
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.hero-cta.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-cta.secondary:hover {
    background: white;
    color: var(--primary);
}

.trust-badges {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.95;
}

.badge-icon {
    font-size: 24px;
}

/* Consultant Section */
.consultant {
    padding: 80px 0;
    background: white;
}

.consultant-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.consultant-image {
    position: relative;
}

.consultant-avatar {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    overflow: hidden;
}

.consultant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.consultant-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    font-weight: 700;
    font-size: 13px;
    color: var(--primary);
}

.consultant-text h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 15px;
    color: var(--dark);
}

.consultant-text .role {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

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

.consultant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-mini {
    text-align: center;
    padding: 15px;
    background: var(--gray);
    border-radius: 10px;
}

.stat-mini .number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-mini .label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Stats Section */
.stats {
    background: var(--gray);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(36px, 5vw, 48px);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* Testimonials Video Section */
.testimonials-video {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.testimonial-video {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.testimonial-video.video-1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-video.video-2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.testimonial-video.video-3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    transition: all 0.3s;
}

.testimonial-video:hover .play-button {
    transform: scale(1.1);
    background: white;
}

.testimonial-content {
    padding: 25px;
}

.testimonial-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--dark);
}

.testimonial-info .company {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-results {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.result-badge {
    padding: 6px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Case Studies Styles */
.case-studies {
    padding: 80px 0;
    background: white;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary);
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.case-header {
    margin-bottom: 20px;
}

.case-info h4 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
}

.case-info .company {
    margin: 0 0 15px 0;
    font-size: 15px;
    color: var(--gray);
    text-align: center;
}

.keyword-tag {
    background: #eff6ff;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    display: block;
    text-align: center;
    margin: 0 auto 15px auto;
    width: fit-content;
}

.case-type {
    margin-bottom: 20px;
}

.campaign-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.campaign-badge.leads {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.campaign-badge.ecommerce {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.campaign-badge.premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.case-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 25px;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.result-metric {
    text-align: center;
    background: white;
    padding: 15px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.metric-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 12px;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-testimonial {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    font-style: italic;
    font-weight: 500;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    margin: 0;
}

/* Case Studies Responsive */
@media (max-width: 1200px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .case-studies {
        padding: 60px 0;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .case-study-card {
        padding: 25px;
    }
    
    .case-info h4 {
        font-size: 20px;
    }
    
    .case-info .company {
        font-size: 14px;
    }
    
    .keyword-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .case-results {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .result-metric {
        padding: 12px 8px;
    }
    
    .metric-number {
        font-size: 20px;
    }
    
    .metric-label {
        font-size: 11px;
    }
    
    .case-description {
        font-size: 14px;
    }
    
    .case-testimonial {
        font-size: 15px;
    }
    
    .campaign-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .case-studies {
        padding: 50px 0;
    }
    
    .case-study-card {
        padding: 20px;
    }
    
    .case-info h4 {
        font-size: 18px;
    }
    
    .case-info .company {
        font-size: 13px;
    }
    
    .keyword-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .case-results {
        padding: 12px;
        gap: 10px;
    }
    
    .result-metric {
        padding: 10px 6px;
    }
    
    .metric-number {
        font-size: 18px;
    }
    
    .metric-label {
        font-size: 10px;
    }
    
    .case-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .case-testimonial {
        font-size: 14px;
        padding-left: 12px;
    }
    
    .campaign-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: var(--gray);
}

.problems {
    background: #fff3f3;
    border-left: 4px solid #ff4444;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.problems h3 {
    color: #cc0000;
    margin-bottom: 20px;
    font-size: clamp(20px, 3vw, 24px);
}

.problems ul {
    list-style: none;
}

.problems li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.problems li:before {
    content: "❌";
    position: absolute;
    left: 0;
}

.solution {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 35px;
    border-radius: 15px;
}

.solution h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 20px;
}

.solution p {
    font-size: 16px;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: white;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.service-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

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

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    color: var(--text);
    font-size: 14px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

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

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    margin-top: 50px;
}

.pricing-category {
    margin-bottom: 50px;
}

.pricing-category h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}

.pricing-category.highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    padding: 35px;
    border-radius: 20px;
}

.price-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.price-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
    position: relative;
}

.price-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.price-item.featured {
    border: 3px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.price-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 18px;
    margin-bottom: 18px;
}

.price-header h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark);
}

.price {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 800;
    color: var(--primary);
}

.price span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.price-item ul {
    list-style: none;
}

.price-item ul li {
    padding: 8px 0;
    padding-left: 22px;
    position: relative;
    font-size: 13px;
    color: var(--text);
}

.price-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
}

.price-note {
    margin-top: 15px;
    padding: 12px;
    background: #e8f5e9;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #2e7d32;
    text-align: center;
}

/* Packages */
.packages {
    margin-top: 60px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.2);
}

.package-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.badge-best {
    position: absolute;
    top: 15px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 50px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.package-header {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 25px;
    text-align: center;
}

.package-header h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.package-price {
    margin: 15px 0;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.new-price {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
}

.new-price small {
    font-size: 16px;
    font-weight: 400;
}

.package-save {
    background: var(--success);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 8px;
}

.package-content {
    padding: 25px;
}

.package-content p {
    margin-bottom: 18px;
    color: var(--text);
    font-size: 14px;
}

.package-content ul {
    list-style: none;
    margin: 15px 0;
}

.package-content ul li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
}

.package-bonus {
    margin-top: 15px;
    padding: 12px;
    background: #fff3cd;
    border-left: 4px solid var(--warning);
    border-radius: 5px;
    font-weight: 600;
    color: #856404;
    font-size: 13px;
}

.pricing-footer {
    margin-top: 50px;
    padding: 30px;
    background: var(--gray);
    border-radius: 15px;
    text-align: center;
}

.pricing-footer p {
    margin: 12px 0;
    font-size: 14px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: clamp(16px, 2vw, 22px);
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 35px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-note {
    margin-top: 18px;
    font-size: 13px;
    color: var(--text-light);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
}

/* Sticky CTA Button (Mobile) */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 15px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.sticky-cta a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: left 0.3s;
        gap: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
        width: 100%;
        text-align: center;
    }

    .consultant-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .consultant-avatar {
        height: 250px;
        margin: 0 auto;
    }

    .consultant-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .sticky-cta {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .services-grid,
    .process-steps,
    .testimonials-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .consultant-stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Calculator Styles */
.calculator-container {
    max-width: 100%;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 32px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s;
    width: 33%;
}

.calculator-step {
    display: none;
}

.calculator-step.active {
    display: block;
}

.calculator-question {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--dark);
    text-align: center;
}

.calculator-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.calculator-option {
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.calculator-option:hover {
    border-color: var(--primary);
    background: #eff6ff;
    transform: translateY(-2px);
}

.calculator-option.selected {
    border-color: var(--primary);
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.calculator-option strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.calculator-option span {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    background: #eff6ff;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--primary);
}

.calculator-nav {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.calculator-nav .btn {
    flex: 1;
    justify-content: center;
}

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

.estimate-price {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 800;
    color: var(--primary);
    margin: 24px 0;
}

.estimate-details {
    background: #eff6ff;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}

.estimate-details h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.estimate-result h3 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.estimate-result p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.estimate-email {
    margin-top: 32px;
}

.estimate-email input {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
    font-family: inherit;
}

.estimate-email input:focus {
    outline: none;
    border-color: var(--primary);
}

.price-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.price-breakdown-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--primary);
}

/* Portfolio Section */
.portfolio-section {
    background: #1a1d29;
    padding: 100px 0;
    color: white;
}

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

.portfolio-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.portfolio-section .section-title {
    color: white;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 0;
}

.portfolio-item {
    background: #2a2d3a;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #3a3d4a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.portfolio-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.portfolio-content {
    padding: 30px;
    text-align: center;
}

.portfolio-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    justify-content: center;
}

.tag {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag:nth-child(1) {
    background: rgba(0, 102, 255, 0.2);
    color: #66b3ff;
}

.tag:nth-child(2) {
    background: rgba(255, 107, 107, 0.2);
    color: #ff9999;
}

.tag:nth-child(3) {
    background: rgba(72, 187, 120, 0.2);
    color: #90ee90;
}

.portfolio-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.portfolio-link:hover {
    color: #66b3ff;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
    padding: 100px 0;
}

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

.testimonials-section .section-title {
    color: var(--dark);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 0;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.testimonial-rating {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 1px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 16px;
    position: relative;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.testimonial-avatar-blue {
    background: #0066FF;
}

.testimonial-avatar-orange {
    background: #FF6B35;
}

.testimonial-info strong {
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section .section-header {
        margin-bottom: 50px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 0;
    }
    
    .portfolio-image {
        height: 220px;
        padding: 30px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-section .section-header {
        margin-bottom: 50px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 0;
    }
    
    .portfolio-content {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .faq-question {
        padding: 25px;
        font-size: 16px;
    }
    
    .faq-answer {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 25px;
    }
    
    .portfolio-content h3 {
        font-size: 20px;
    }
    
    .portfolio-content p {
        font-size: 14px;
    }
}

/* Calculator Navigation Styles */
.calculator-nav {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    gap: 15px;
}

.calculator-prev,
.calculator-next {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.calculator-prev:hover,
.calculator-next:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.calculator-prev:active,
.calculator-next:active {
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .calculator-nav {
        margin-top: 20px;
        padding-top: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-prev,
    .calculator-next {
        width: 100%;
        max-width: 200px;
        padding: 15px 20px;
        font-size: 16px;
    }
}
