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

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --dark-navy: #0f172a;
    --light-navy: #1e293b;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
    color: var(--white);
}

.infinity-logo img {
    width: 80px;
    height: 80px;
    animation: pulse 2s infinite;
}

.loading-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: var(--dark-navy);
    box-shadow: var(--shadow-lg);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Reduced from 2rem */
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem; /* Slightly smaller font */
    transition: var(--transition);
    position: relative;
    white-space: nowrap; /* Prevent wrapping */
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px; /* Reduced padding */
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem; /* Slightly smaller font */
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px; /* Reduced gap */
    white-space: nowrap;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}


/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-trigger i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-navy);
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    padding-left: 25px;
}

.dropdown-link:first-child {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.dropdown-link:last-child {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-secondary);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    color: var(--white);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

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

.section-description {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

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

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.service-features i {
    color: var(--success);
    font-size: 0.9rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.service-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

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

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

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--gray);
}

/* Formation Sections */
.formation-section {
    padding: 6rem 0;
    background: var(--white);
}

.formation-section:nth-child(even) {
    background: var(--light-gray);
}

.recommended-states {
    margin-bottom: 3rem;
    text-align: center;
}

.recommended-states h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.recommended-grid-single {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.recommended-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.recommended-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.recommended-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.recommended-btn span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.recommended-btn small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.state-selection {
    margin-bottom: 3rem;
    text-align: center;
}

.state-selection h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.state-selector select {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--white);
    color: var(--dark-navy);
    cursor: pointer;
    transition: var(--transition);
}

.state-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.package-details {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.package-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.package-pricing {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.price-item {
    text-align: center;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid #e2e8f0;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.warning-alert {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
}

.warning-alert.high-alert {
    background: #fee2e2;
    border-color: var(--error);
}

.warning-alert h4 {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.warning-alert.high-alert h4 {
    color: #dc2626;
}

.package-includes {
    margin: 2rem 0;
}

.package-includes h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f0f9ff;
    border-radius: 8px;
}

.include-item i {
    color: var(--success);
}

/* Package Details Styling */
.package-details-info {
    background: #f8fafc;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #e2e8f0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-navy);
}

.detail-value {
    font-weight: 700;
    color: var(--primary-color);
}

.total-row {
    background: #f0f9ff;
    margin: 0 -1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.total-row .detail-label,
.total-row .detail-value {
    font-size: 1.1rem;
    font-weight: 800;
}

/* Annual Compliance Styling */
.annual-compliance {
    background: #f0fdf4;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid #10b981;
}

.annual-compliance h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.compliance-info {
    display: grid;
    gap: 1rem;
}

.compliance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid #d1fae5;
}

.compliance-label {
    font-weight: 600;
    color: var(--dark-navy);
}

.compliance-value {
    font-weight: 700;
    color: var(--success);
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 2rem;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--dark-navy);
    color: var(--white);
}

.contact .section-title,
.contact .section-description {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-container {
    margin-top: 40px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4285f4;
    display: inline-block;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.faq-toggle {
    color: #4285f4;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-category h3 {
        font-size: 20px;
    }
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
}

.close:hover {
    color: var(--dark-navy);
}

.modal-content h3 {
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.modal-content input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    font-size: 1rem;
}

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

/* Currency Display */
.currency-display {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    font-weight: 600;
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
}

.legal-header {
    margin-bottom: 40px;
    text-align: center;
}

.legal-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-header p {
    color: var(--text-color-light);
    font-style: italic;
}

.legal-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 30px 0 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin: 25px 0 15px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.legal-content strong {
    font-weight: 600;
    color: var(--text-color-dark);
}
/* Bank Accounts Section */
.bank-accounts-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bank-account-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 500px;
}

.bank-account-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.bank-account-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 10%);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.account-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.account-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

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

.account-price-range {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-option {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.account-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.account-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
    line-height: 1.5;
}

.account-features li i {
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Ensure button stays at bottom */
.bank-account-card .service-btn {
    margin-top: auto;
}

/* Medium screens - 2 columns */
@media (min-width: 768px) and (max-width: 1199px) {
    .bank-accounts-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

/* Tablet screens */
@media (max-width: 1024px) {
    .bank-accounts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile screens - 1 column */
@media (max-width: 767px) {
    .bank-accounts-section {
        padding: 3rem 0;
    }
    
    .bank-accounts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .bank-account-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .account-header h3 {
        font-size: 1.25rem;
    }
    
    .account-price {
        font-size: 2rem;
    }
    
    .account-features li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .bank-account-card {
        padding: 1rem;
    }
    
    .featured-badge {
        font-size: 0.75rem;
        padding: 4px 15px;
        right: 10px;
    }
    
    .account-price {
        font-size: 1.75rem;
    }
    
    .price-option {
        font-size: 1rem;
    }
}
/* For larger screens, more compact layout */
@media (min-width: 1200px) {
    .nav-container {
        padding: 0.75rem 2rem; /* Slightly reduced vertical padding */
    }
}




/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-navy);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        gap: 1.5rem;
        overflow-y: auto; /* Add scroll for long menu */
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        font-size: 1rem;
        padding: 12px 24px;
    }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        margin-left: 0;
        border-radius: 0;
        width: 100%;
        max-height: none;
    }
    
    .dropdown-trigger i {
        display: none;
    }
    
    .dropdown-link {
        padding: 10px 20px;
        font-size: 0.95rem;
        text-align: center;
    }

    /* Hero adjustments */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .package-pricing {
        flex-direction: column;
        gap: 1rem;
    }

    .recommended-grid-single {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .currency-display {
        bottom: 10px;
        right: 10px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    /* Hero image section */
    .hero-image {
        display: none; /* Hide floating cards on mobile */
    }

    /* Bank accounts grid */
    .bank-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
}

@media (max-width: 768px) {
    /* Additional mobile-specific styles */
    .hero-content {
        padding: 1rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ mobile adjustments */
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-category h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    /* Small mobile screens */
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .hero {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .recommended-grid-single {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .recommended-btn {
        min-width: 100%;
        padding: 1.5rem 1rem;
    }

    .package-details {
        padding: 1.5rem;
    }

    .services {
        padding: 3rem 0;
    }

    .service-features {
        font-size: 0.9rem;
    }

    /* Bank account cards mobile */
    .bank-account-card {
        padding: 1.5rem;
    }

    .account-features li {
        font-size: 0.9rem;
    }

    /* Contact form mobile */
    .contact-form {
        padding: 1.5rem;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Fix container padding for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Fix service grid minimum width for very small screens */
@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-width: unset;
    }

    .bank-accounts-grid {
        grid-template-columns: 1fr;
    }
    
    .bank-account-card {
        min-width: unset;
    }
}


/* USA Physical Bank Service - Special Styling */
.bank-account-card.physical-bank {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: visible;
}

.premium-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: var(--white);
    padding: 6px 25px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.highlight-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.highlight-item span {
    font-size: 0.85rem;
    color: var(--dark-navy);
    font-weight: 600;
}

.service-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.service-section h4 {
    color: var(--dark-navy);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-section h4 i {
    color: var(--primary-color);
}

.section-list {
    list-style: none;
    padding: 0;
}

.section-list li {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

.section-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.important-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.important-note i {
    color: #f59e0b;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.important-note p {
    color: #92400e;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.premium-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    font-size: 1.1rem;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.premium-btn i {
    font-size: 1rem;
}

/* Responsive adjustments for physical bank card */
@media (max-width: 1024px) {
    .service-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .highlight-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .physical-bank {
        margin-top: 2rem; /* Extra space for premium badge */
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .service-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-section {
        padding: 1rem;
    }
    
    .premium-badge {
        font-size: 0.75rem;
        padding: 4px 20px;
    }
}

@media (max-width: 400px) {
    .section-list li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .important-note {
        padding: 0.75rem;
    }
    
    .important-note p {
        font-size: 0.8rem;
    }
}

/* Adjust grid to accommodate 6 cards */
@media (min-width: 1200px) {
    .bank-accounts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fix dropdown menu for mobile */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-navy);
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom scrollbar for dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Mobile dropdown fix */
@media (max-width: 1024px) {
    .dropdown-menu {
        max-height: none;
        overflow-y: visible;
    }
}

/* Add styling for the Live Formation Card */
.live-formation-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    overflow: hidden;
    position: relative;
}

.live-formation-card::before {
    content: "NEW";
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #e74c3c;
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 1;
}

.live-formation-content {
    display: flex;
    padding: 30px;
    align-items: center;
}

.live-formation-icon {
    background: linear-gradient(135deg, #4285f4, #2563eb);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 30px;
}

.live-formation-icon i {
    font-size: 2.5rem;
}

.live-formation-text {
    flex: 1;
}

.live-formation-text h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.live-formation-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.live-formation-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}

.live-formation-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.live-formation-features li i {
    color: #2563eb;
    margin-right: 10px;
}

.live-formation-price {
    margin: 20px 0;
    display: flex;
    align-items: center;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-tag .amount {
    font-size: 42px;
    font-weight: 800;
    color: #4285f4;
    line-height: 1;
    position: relative;
}

.price-tag .amount::before {
    content: none;
}

.price-tag .note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
    text-align: center;
    font-weight: 500;
}

.live-formation-btn {
    background: linear-gradient(135deg, #4285f4, #2563eb);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
}

.live-formation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.live-formation-btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .live-formation-content {
        flex-direction: column;
        text-align: center;
    }
    
    .live-formation-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .live-formation-features {
        grid-template-columns: 1fr;
    }
    
    .live-formation-features li {
        justify-content: center;
    }
    
    .live-formation-price {
        flex-direction: column;
    }
    
    .price-tag .amount {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* SEO Dynamic Headers Styling */
.seo-dynamic-headers {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.seo-title, .seo-subtitle {
    font-size: 1rem;
    margin: 0;
    padding: 0;
}

.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.seo-keywords span {
    font-size: 0.8rem;
}

/* Live Formation Section Styling - Enhanced Design */
.live-formation-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fd 50%, #e0ecfc 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.live-formation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234285f4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.enhanced-formation-layout {
    display: grid;
    grid-template-columns: minmax(300px, 35%) 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    align-items: center;
}

/* Device Showcase */
.device-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}

.device-mockup {
    width: 270px;
    height: 500px;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.3);
    padding: 8px;
    border: 8px solid #222;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transform-style: preserve-3d;
    animation: device-float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.device-status-bar {
    height: 24px;
    background: #222;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    color: white;
    font-size: 10px;
}

.status-icons {
    display: flex;
    gap: 8px;
}

.status-time {
    font-weight: 600;
}

.device-button {
    position: absolute;
    width: 40px;
    height: 5px;
    background: #333;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

@keyframes device-float {
    0%, 100% { transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateY(-15px); }
}

.device-screen {
    width: 100%;
    height: calc(100% - 24px);
    background: #f8f9fa;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screen-header {
    background: linear-gradient(135deg, #4285f4, #2563eb);
    color: white;
    padding: 12px;
    display: flex;
    align-items: center;
    font-weight: 700;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
}

.meeting-controls {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.screen-header i {
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.screen-body {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.meeting-window {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meeting-participant {
    background-color: #e0ecfc;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 120px;
}

.participant-video {
    width: 80px;
    height: 80px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin-bottom: 5px;
}

.participant-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.meeting-ui {
    background: white;
    border-radius: 10px;
    flex: 1;
    padding: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.formation-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
}

.tab {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: #4285f4;
    border-color: #4285f4;
}

.formation-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-size: 10px;
    color: #6c757d;
    font-weight: 600;
}

.form-input {
    height: 18px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.form-input.active {
    position: relative;
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.form-input.active::before {
    content: attr(data-text);
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #333;
    white-space: nowrap;
}

.typing-cursor {
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #4285f4;
    font-weight: 300;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.process-indicator {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 3px solid #e9ecef;
    font-size: 11px;
}

.process-step.completed {
    border-left: 3px solid #38b000;
}

.process-step.active {
    border-left: 3px solid #4285f4;
    box-shadow: 0 3px 8px rgba(66, 133, 244, 0.15);
    transform: scale(1.03);
}

.process-step i {
    font-size: 12px;
    width: 20px;
    height: 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.process-step.completed i {
    background: #38b000;
    color: white;
}

.process-step.active i {
    background: #4285f4;
    color: white;
    animation: spin 6s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.process-step span {
    font-weight: 600;
    font-size: 11px;
    color: #495057;
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.badge {
    position: absolute;
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.badge i {
    font-size: 14px;
}

.badge.secure {
    top: 10%;
    right: -20px;
    animation: float-1 5s ease-in-out infinite;
}

.badge.privacy {
    bottom: 20%;
    left: -20px;
    animation: float-2 6s ease-in-out infinite;
}

.badge.control {
    bottom: 50%;
    right: -30px;
    animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

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

.badge.secure i { color: #38b000; }
.badge.privacy i { color: #4285f4; }
.badge.control i { color: #ff5722; }

/* Formation Content */
.formation-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.formation-intro {
    margin-bottom: 25px;
}

.formation-intro h3 {
    font-size: 28px;
    color: #1d3557;
    margin-bottom: 15px;
    font-weight: 700;
}

.formation-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #4285f4;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 24px;
    color: #4285f4;
    min-width: 30px;
    text-align: center;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1d3557;
    margin: 0 0 5px 0;
}

.feature-text p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #1d3557;
}

.step span {
    width: 36px;
    height: 36px;
    background: #4285f4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

.step-arrow {
    color: #a0aec0;
    font-size: 18px;
}

/* Action Row */
.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #e6f0fd, #f0f7ff);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(66, 133, 244, 0.2);
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-tag .amount {
    font-size: 42px;
    font-weight: 800;
    color: #4285f4;
    line-height: 1;
    position: relative;
}

.price-tag .amount::before {
    content: none;
}

.price-tag .note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
    text-align: center;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #4285f4, #2563eb);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(66, 133, 244, 0.4);
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .enhanced-formation-layout {
        grid-template-columns: 300px 1fr;
        gap: 30px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formation-intro h3 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .enhanced-formation-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .device-showcase {
        margin-bottom: 20px;
    }
    
    .floating-badges {
        display: none;
    }
    
    .process-steps {
        padding: 15px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .live-formation-section {
        padding: 40px 0;
    }
    
    .formation-content {
        padding: 25px 20px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature {
        padding: 15px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    
    .action-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .device-mockup {
        width: 220px;
        height: 400px;
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
    }
    
    .device-status-bar {
        height: 20px;
    }
    
    .participant-video {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .meeting-participant {
        height: 90px;
    }
    
    .formation-intro h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .formation-intro p {
        font-size: 14px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
    
    .step span {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .step {
        font-size: 14px;
    }
    
    .price-tag .amount {
        font-size: 36px;
    }
    
    .price-tag .amount::before {
        font-size: 18px;
        left: -15px;
    }
}

@media (max-width: 400px) {
    .device-mockup {
        width: 180px;
        height: 330px;
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
        margin: 0 auto;
    }
    
    .device-status-bar {
        height: 18px;
        font-size: 8px;
    }
    
    .screen-header {
        padding: 8px;
        font-size: 12px;
    }
    
    .meeting-controls {
        font-size: 10px;
    }
    
    .participant-video {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .meeting-participant {
        height: 70px;
    }
    
    .participant-name {
        font-size: 10px;
    }
    
    .formation-tabs .tab {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .form-label {
        font-size: 8px;
    }
    
    .form-input {
        height: 16px;
    }
    
    .process-step {
        padding: 6px;
        font-size: 9px;
        gap: 6px;
    }
    
    .process-step i {
        font-size: 10px;
        width: 16px;
        height: 16px;
    }
    
    .process-step span {
        font-size: 9px;
    }
    
    .formation-content {
        padding: 15px 12px;
    }
    
    .formation-intro h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .formation-intro p {
        font-size: 13px;
    }
    
    .feature {
        padding: 12px;
        gap: 10px;
    }
    
    .feature i {
        font-size: 18px;
    }
    
    .feature-text h4 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .feature-text p {
        font-size: 11px;
    }
    
    .process-steps {
        padding: 12px 8px;
        margin-bottom: 20px;
    }
    
    .step span {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .step {
        font-size: 12px;
    }
    
    .action-row {
        padding: 15px;
    }
    
    .price-tag .amount {
        font-size: 32px;
    }
    
    .price-tag .amount::before {
        font-size: 16px;
        left: -12px;
    }
    
    .price-tag .note {
        font-size: 12px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}
