/* LANGUAGE SELECTOR - GUARANTEED VISIBLE */
.language-selector {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 9999;
    background: white;
    padding: 10px 15px;
    border: 2px solid #2C5F7A;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.language-selector select {
    background: white;
    border: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #2C5F7A;
    cursor: pointer;
    outline: none;
    padding: 5px 10px;
}

.language-selector select:focus {
    outline: none;
}




/* Base Styles and Variables */
:root {
    --primary-color: #2C5F7A;
    --primary-dark: #1a4a61;
    --accent-color: #D4AF37;
    --accent-light: #e6c058;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Language Selector Styles */
/*
.language-selector {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}
*/
/*
.language-selector select {
    background: transparent;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 15px;
    outline: none;
    appearance: none;
    background-image: url("image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232C5F7A'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 25px;
}
*/
/*
.language-selector select:hover {
    background-color: rgba(44, 95, 122, 0.1);
}
*/

/* Mobile language selector */
@media (max-width: 768px) {
    .language-selector {
        top: 70px;
        right: 15px;
        background: white;
    }
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 10px;
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 120px 0 80px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-roi {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 700;
}

.hero-roi strong {
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* Section Base Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Text first, image right (default for odd sections) */
.section-content.text-first {
    grid-template-columns: 1fr 1fr;
}

/* Image first, text right (for even sections) */
.section-content.image-first {
    grid-template-columns: 1fr 1fr;
}

.text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: var(--border-radius);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--text-light);
    font-weight: 500;
    min-height: 300px;
}

/* ROI Calculator */
.roi-calculator {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    border-left: 4px solid var(--accent-color);
}

.roi-calculator h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.calculator-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.calculator-inputs input {
    flex: 1;
    min-width: 150px;
    padding: 10px;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.calculator-result {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Business Examples */
.business-examples {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    border-left: 4px solid var(--accent-color);
}

.business-examples h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.example-item {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.example-item strong {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.feature-text h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Client Logos Section */
.client-logos-section {
    background-color: var(--gray-light);
    text-align: center;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.client-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.client-logo-img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

/* Video Testimonials */
.video-testimonials-section {
    background-color: white;
}

.video-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-testimonial {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.video-placeholder {
    background: black;
    height: 200px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Social Proof Bar */
.social-proof-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.proof-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* About Section */
.about-section {
    background-color: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    order: 2;
}

.about-text {
    order: 1;
}

.founder-placeholder {
    height: 400px;
    min-height: 300px;
}

.founder-credentials {
    background: white;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 25px;
    box-shadow: var(--shadow);
}

.founder-credentials p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.founder-credentials strong {
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, var(--gray-light) 0%, white 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-header h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 400;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-medium);
    display: flex;
    align-items: center;
}

.pricing-features li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 10px;
}

.pricing-guarantee {
    text-align: center;
    margin: 20px 0;
    color: var(--success-color);
    font-weight: 600;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.payment-methods {
    text-align: center;
    margin-top: 40px;
    color: var(--gray-dark);
}

.payment-methods p {
    margin: 5px 0;
}

/* Demo Section */
.demo-section {
    background-color: var(--gray-light);
}

.demo-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-placeholder {
    background: black;
    height: 400px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 40px 0;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8952a 100%);
    padding: 80px 0;
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-guarantee {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Lead Magnet Section */
.lead-magnet-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 60px 0;
}

.lead-magnet-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.lead-magnet-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.lead-magnet-form {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.lead-magnet-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-info {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.contact-info h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--gray-light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-left: 10px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-self: flex-end;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .section-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .lead-magnet-form {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .founder-credentials {
        padding: 15px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .social-proof-bar {
        gap: 15px;
    }
    
    .proof-number {
        font-size: 1.4rem;
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .client-logo {
        width: 100px;
        height: 70px;
    }
    
    .hero-roi {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        padding: 15px;
    }
    
    .image-placeholder {
        height: 250px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide logo text when image is available */
.logo-text,
.footer-logo-text {
    display: none;
}

/* Real Image Styling */
.section-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-height: 400px;
    object-fit: cover;
}

/* Client Logo Image Styling */
.client-logo-img {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

/* Founder Photo */
.founder-photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Revenue Section */
.revenue-section {
    background-color: white;
}

.revenue-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.revenue-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid var(--gray-medium);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.revenue-list li:last-child {
    border-bottom: none;
}

.revenue-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .revenue-list li {
        padding: 10px 0 10px 25px;
        font-size: 1rem;
    }
    
    .revenue-list li::before {
        top: 10px;
        font-size: 1.1rem;
    }
}

/* Google Form Embed Styles */
.google-form-embed {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.google-form-embed h3 {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
}

.google-form-embed iframe {
    width: 100%;
    height: 900px; /* Desktop height for 7 questions */
    border: none;
    display: block;
}

/* Responsive iframe heights for 7-question form */
@media (max-width: 1200px) {
    .google-form-embed iframe {
        height: 900px;
    }
}

@media (max-width: 960px) {
    .google-form-embed iframe {
        height: 1000px;
    }
}

@media (max-width: 768px) {
    .google-form-embed iframe {
        height: 1150px;
    }
}

@media (max-width: 480px) {
    .google-form-embed iframe {
        height: 1400px;
    }
    
    .google-form-embed h3 {
        font-size: 1.3rem;
        padding: 15px;
    }
}