/*
Theme Name: CCCamia Pro
Theme URI: https://cccamia.com
Author: Youness
Description: Modern, SEO-optimized theme for CCcam and IPTV services with responsive design
Version: 2.7.0
Tags: satellite-tv, iptv, ccam, streaming, responsive, modern
Text Domain: cccamia
*/

/* CSS Variables */
:root {
    --primary-blue: #2B5AA0;
    --primary-coral: #FF6B5A;
    --dark-blue: #1E3A5F;
    --light-blue: #E8F0FC;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --text-color: #333333;
    --text-light: #6B7280;
    --gradient-blue: linear-gradient(135deg, #2B5AA0 0%, #1E3A5F 100%);
    --gradient-coral: linear-gradient(135deg, #FF6B5A 0%, #FF8A7A 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
}

.site-logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo-img:hover {
    transform: scale(1.05);
}

.site-logo span {
    color: var(--primary-coral);
}

.main-navigation ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-coral);
}

.header-cta .btn {
    padding: 0.75rem 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(100px); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-coral);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-coral);
    padding: 3rem 2rem;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Section */
.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.section-title h2::after {
    display: none;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-featured {
    background: var(--gradient-coral);
    color: var(--white);
    border: none;
}

.service-card-featured h3,
.service-card-featured p {
    color: var(--white);
}

.service-card-featured .service-icon-simple {
    color: var(--white);
}

.service-icon-simple {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-coral);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-simple {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-coral);
    transform: scale(1.05);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.pricing-header h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: var(--primary-coral);
    font-weight: 800;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

/* Footer */
.site-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-coral);
}

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

/* Modern Content Section */
.modern-content-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    padding: 6rem 2rem;
}

.modern-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-coral);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Feature Cards Grid */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-coral);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-coral);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.1));
}

.feature-card h3 {
    color: var(--dark-blue);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feature-card p:last-of-type {
    margin-bottom: 0;
}

.highlight-card {
    background: linear-gradient(135deg, #FFF5F3 0%, #FFE8E3 100%);
    border-color: var(--primary-coral);
}

.highlight-card::before {
    transform: scaleX(1);
}

.feature-cta {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--primary-coral);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.feature-cta:hover {
    color: var(--dark-blue);
    transform: translateX(5px);
}

/* Business Banner */
.business-banner {
    background: var(--gradient-blue);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.business-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

.business-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.business-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.business-content p {
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.business-content .btn {
    background: var(--white);
    color: var(--primary-blue);
}

.business-content .btn:hover {
    background: var(--primary-coral);
    color: var(--white);
}

.business-icon {
    font-size: 8rem;
    opacity: 0.2;
    position: relative;
    z-index: 0;
    flex-shrink: 0;
}

/* Responsive for Modern Content */
@media (max-width: 992px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .business-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .business-icon {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .modern-content-section {
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .business-banner {
        padding: 2rem 1.5rem;
    }
    
    .business-content h3 {
        font-size: 1.5rem;
    }
    
    .business-icon {
        font-size: 3rem;
    }
}

/* Modern IPTV Section */
.modern-iptv-section {
    background: var(--white);
    padding: 6rem 2rem;
}

.quality-showcase {
    text-align: center;
    margin: 4rem 0;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.info-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-coral);
    background: var(--white);
}

.info-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(43, 90, 160, 0.1);
    line-height: 1;
}

.info-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Plan Comparison */
.plan-comparison-wrapper {
    margin: 5rem 0;
}

.comparison-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.modern-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.modern-plan-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid #E5E7EB;
}

.modern-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-plan {
    position: relative;
    border-color: var(--primary-coral);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-coral);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.plan-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.gold-plan {
    background: linear-gradient(135deg, #2B5AA0 0%, #1E3A5F 100%);
}

.strong-plan {
    background: var(--gradient-coral);
}

.plan-header h4 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.plan-price {
    color: var(--white);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.plan-price .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.plan-price .period {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 1.5rem;
}

.plan-features {
    padding: 2.5rem;
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #F3F4F6;
}

.plan-feature:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--primary-coral);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.plan-feature span:last-child {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.5;
}

.plan-button {
    display: block;
    margin: 0 2.5rem 2.5rem;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.featured-button {
    background: var(--gradient-coral);
}

.featured-button:hover {
    background: var(--primary-coral);
}

/* Device Compatibility */
.device-compatibility {
    margin: 5rem 0 2rem;
}

.device-compatibility h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.device-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.device-icon-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.device-icon-item:hover {
    background: var(--white);
    border-color: var(--primary-coral);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.device-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.75rem;
}

.device-icon-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
    margin: 0;
}

/* Responsive for Modern IPTV */
@media (max-width: 992px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-plan {
        transform: scale(1);
    }
    
    .device-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .modern-iptv-section {
        padding: 3rem 1rem;
    }
    
    .info-number {
        font-size: 3rem;
    }
    
    .plan-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .plan-price .amount {
        font-size: 3rem;
    }
    
    .plan-features {
        padding: 1.5rem;
    }
    
    .device-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .device-icon-item {
        padding: 1.5rem 0.75rem;
    }
    
    .device-emoji {
        font-size: 2.5rem;
    }
}

/* =======================================
   MINIMAL CSS FIXES - 3 SECTIONS ONLY
   ======================================= */

/* 1. Comparison Section - Better Cards */
.decision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.decision-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 5px solid #FF6B35;
    transition: all 0.3s ease;
}

.decision-card:last-child {
    border-top-color: #004E89;
}

.decision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.decision-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.decision-card h3 {
    font-size: 26px;
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.check-list li {
    padding: 14px 0 14px 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    width: 28px;
    height: 28px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.both-option {
    background: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 3px solid #FF6B35;
}

.both-option h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.both-option p {
    font-size: 18px;
    margin-bottom: 28px;
}

/* 2. Testimonials - Card Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #FF6B35;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C35 100%);
    border: none;
    color: white;
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    padding-top: 24px;
    border-top: 2px solid #E5E7EB;
}

.testimonial-card.featured .testimonial-author {
    border-top-color: rgba(255,255,255,0.3);
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.testimonial-author span {
    font-size: 14px;
}

/* 3. FAQ - Better Cards */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #FF6B35;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.faq-item h4 {
    font-size: 19px;
    margin-bottom: 14px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .decision-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* 4. Menu - First Version Style */
.site-header {
    background: white;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.site-logo {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
    text-decoration: none;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.main-navigation a {
    display: block;
    padding: 10px 18px;
    color: #1F2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s;
}

.main-navigation a:hover,
.main-navigation li.current-menu-item a {
    background: #FEF3F2;
    color: #FF6B35;
}

/* =======================================
   IMPROVED DROPDOWN MENU SYSTEM
   ======================================= */

/* Header adjustments for larger menu */
.site-header {
    background: white;
    border-bottom: 1px solid #E5E7EB;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo-img:hover {
    transform: scale(1.05);
}

/* Main navigation with larger size */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.main-navigation > ul > li {
    position: relative;
    margin: 0;
}

.main-navigation li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.main-navigation li a:hover,
.main-navigation li.current-menu-item > a {
    background: #FEF3F2;
    color: #FF6B35;
}

/* Dropdown arrow */
.main-navigation li.menu-item-has-children > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.main-navigation li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown submenu */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    background: white;
    min-width: 220px;
    padding: 8px 0;
    margin: 4px 0 0 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid #E5E7EB;
    gap: 0;
}

.main-navigation li:hover > ul {
    display: flex;
}

.main-navigation ul ul li {
    margin: 0;
}

.main-navigation ul ul li a {
    padding: 12px 20px;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
}

.main-navigation ul ul li a:hover {
    background: #FEF3F2;
    color: #FF6B35;
}

.main-navigation ul ul li:first-child a {
    border-radius: 12px 12px 0 0;
}

.main-navigation ul ul li:last-child a {
    border-radius: 0 0 12px 12px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    padding: 12px;
    color: #1F2937;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Responsive menu */
@media (max-width: 820px) {
    .main-navigation {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        z-index: 9999 !important;
    }
    
    .main-navigation.active {
        display: block !important;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation li a {
        padding: 14px 16px;
        border-radius: 8px;
        margin-bottom: 4px;
    }
    
    .main-navigation ul ul {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        margin: 4px 0;
        background: transparent;
    }
    
    .main-navigation li.menu-item-has-children > a::after {
        margin-left: auto;
    }
    
    .main-navigation li.menu-item-has-children.open > ul {
        display: flex;
    }
    
    .main-navigation ul ul li a {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Logo mobile size */
    .site-logo-img {
        height: 40px;
    }
}

/* =======================================
   CONTACT FORM 7 - CCCAMIA THEME STYLE
   ======================================= */

/* Contact form section styling */
.contact-section .wpcf7 {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Section title above form */
.contact-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-section .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.contact-section .section-title p {
    font-size: 16px;
    color: #6B7280;
}

/* All form controls */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
    color: #1F2937;
    box-sizing: border-box;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.wpcf7 select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234B5563' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    appearance: none;
}

/* Form labels */
.wpcf7 label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

/* Form paragraph spacing */
.wpcf7 p {
    margin-bottom: 24px;
}

/* Submit button */
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
    background: linear-gradient(135deg, #FF6B35, #FF8C35);
    color: white;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 16px;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* Validation Messages */
.wpcf7-not-valid-tip {
    color: #EF4444;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.wpcf7-not-valid {
    border-color: #EF4444 !important;
}

.wpcf7-response-output {
    margin: 24px 0 0 0;
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    border: none !important;
}

.wpcf7-mail-sent-ok {
    background: #10B981 !important;
    color: white !important;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    background: #FEF2F2 !important;
    color: #EF4444 !important;
    border: 2px solid #EF4444 !important;
}

.wpcf7-spam-blocked {
    background: #FEF2F2 !important;
    color: #EF4444 !important;
    border: 2px solid #EF4444 !important;
}

/* Loading State */
.wpcf7 form.submitting input[type="submit"],
.wpcf7 form.submitting button[type="submit"] {
    opacity: 0.7;
    cursor: not-allowed;
}

.wpcf7-spinner {
    margin-left: 10px;
}

/* Tablet Responsive - Medium Screens */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section .wpcf7 {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .contact-section .section-title h2 {
        font-size: 24px;
    }
    
    .wpcf7 input[type="submit"],
    .wpcf7 button[type="submit"] {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Additional Mobile Fixes - Prevent Horizontal Overflow */
@media (max-width: 820px) {
    /* Ensure all sections stay within viewport */
    .section,
    .hero-section,
    .stats-section,
    .contact-section,
    .features-section {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Fix container padding on mobile */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Ensure header doesn't overflow */
    .site-header {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .header-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Fix any grid layouts - Make them responsive */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Make cards full width on mobile */
    .service-card,
    .pricing-card,
    .feature-item {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Ensure images don't cause overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}
