/* styles.css for Lotto Runners Website */
:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --secondary: #FFD600;
    --accent: #10b981;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --primary-yellow: #FFD600;
    --secondary-yellow: #FFD600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    background: var(--gray-50);
}
.font-space-grotesk {
    font-family: 'Space Grotesk', sans-serif;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}
.loading-content {
    text-align: center;
    color: white;
}
.loading-logo {
    width: 100%;
}
.loading-logo .logo-icon {
    height: 100px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.loading-logo .logo-text {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}
.loading-logo .loading-favicon {
    height: 140px !important;
    width: auto !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12) !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.progress-bar {
    height: 100%;
    background: white;
    width: 0%;
    animation: loadProgress 3s ease-in-out;
}
.loading-text {
    font-size: 1rem;
    opacity: 0.8;
}
@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}
.nav-logo .logo-icon {
    height: 32px;
    width: auto;
    border-radius: 8px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}
.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: var(--primary-blue);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--primary-blue);
    color: white;
}
.btn-primary:hover {
    background: var(--secondary-yellow);
    color: var(--gray-900);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.25);
}
.btn-secondary {
    background: transparent;
    color: var(--secondary-yellow);
    border: 2px solid var(--secondary-yellow);
}
.btn-secondary:hover {
    background: var(--secondary-yellow);
    color: var(--gray-900);
    border-color: var(--secondary-yellow);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: 0.3s;
}
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.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, var(--primary-blue), #4f46e5);
    opacity: 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: 15%;
    animation-delay: 2s;
}
.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}
.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 40%;
    animation-delay: 1s;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 70px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}
.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}
.platform-badges {
    display: flex;
    gap: 2rem;
}
.platform-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}
.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-yellow), var(--primary-blue));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-img {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
}
/* ... rest of the CSS from index.html, refactored for clarity and accessibility ... */
/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        z-index: 3000;
    }
    .nav-container {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 0.5rem;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 2000;
        display: flex;
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger {
        display: flex;
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .platform-badges {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-img {
        border-radius: 12px;
    }
}
@media (max-width: 600px) {
    .loading-logo .logo-icon {
        height: 72px !important;
        border-radius: 14px !important;
    }
    .loading-logo .loading-favicon {
        height: 140px !important;
        border-radius: 20px !important;
    }
    .hero-buttons {
        flex-direction: row !important;
        gap: 0.7rem;
        justify-content: center;
        margin-bottom: 1.2rem;
    }
    .hero-buttons .btn {
        width: auto !important;
        min-width: 120px;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        font-size: 1rem;
        margin-bottom: 0 !important;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
    }
    .stat-card {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 1.2rem 0.7rem !important;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 110px;
    }
}

/* --- Section Spacing & Consistency --- */
.section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: none;
}
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
/* --- Card and Grid Spacing --- */
.services-grid,
.packages-grid,
.steps-grid {
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.service-card,
.package-card,
.step-card {
    padding: 2.5rem 2rem;
    margin: 0;
}
.about-flex,
.contact-flex {
    gap: 4rem;
    margin-top: 3rem;
}
.about-stats {
    gap: 2rem;
}
.contact-form {
    padding: 2.5rem 2rem;
}
/* --- Section Backgrounds for Alternating Contrast --- */
.section.bg-gray-50 {
    background: var(--gray-50);
}
.section.bg-white {
    background: #fff;
}
/* --- Responsive Tweaks for Spacing --- */
@media (max-width: 900px) {
    .section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    .about-flex, .contact-flex {
        gap: 2rem;
    }
}
@media (max-width: 600px) {
    .section {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .section-title,
    .section-subtitle,
    .hero-title,
    .hero-subtitle,
    .about-description,
    .about-values,
    .about-stats,
    .stat-card,
    .service-card,
    .package-card,
    .step-card,
    .faq-list,
    .faq-item,
    .faq-question,
    .faq-answer,
    .contact-info,
    .contact-form,
    .footer-bottom {
        text-align: center !important;
    }
    .hero-content,
    .hero-buttons,
    .platform-badges,
    .about-flex,
    .contact-flex,
    .services-grid,
    .packages-grid,
    .steps-grid,
    .about-stats,
    .faq-list {
        justify-content: center !important;
        align-items: center !important;
    }
    .service-card,
    .package-card,
    .step-card,
    .stat-card,
    .faq-item,
    .contact-form {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .about-values li,
    .contact-list li {
        justify-content: center !important;
    }
    .contact-list {
        padding-left: 0;
        padding-right: 0;
    }
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    .section-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.2rem;
    }
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }
    .platform-badges {
        flex-direction: column;
        gap: 0.7rem;
    }
    .hero-img {
        border-radius: 10px;
        max-width: 100%;
        height: auto;
    }
    .logo-icon {
        height: 36px !important;
        width: auto !important;
    }
    .services-grid, .packages-grid, .steps-grid, .about-stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-card, .package-card, .step-card, .contact-form {
        padding: 0.8rem 0.3rem;
        font-size: 0.98rem;
    }
    .package-card .btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    .faq-list {
        margin-top: 1.2rem;
    }
    .faq-question {
        padding: 1rem 1.2rem 1rem 1rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
        font-size: 0.98rem;
    }
    .about-flex, .contact-flex {
        gap: 0.7rem;
    }
    .about-values li, .contact-list li {
        font-size: 0.98rem;
    }
    .stat-card {
        padding: 0.7rem 0.2rem;
    }
    .contact-form input, .contact-form textarea, .contact-form select {
        font-size: 1rem;
        padding: 0.7rem;
    }
    .footer-bottom {
        font-size: 0.95rem;
        margin-top: 1.2rem;
        line-height: 1.5;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .nav-logo .logo-icon {
        height: 28px !important;
    }
    .nav-container {
        padding: 0 0.5rem;
    }
    .nav-menu {
        padding: 1rem 0;
    }
    .about-description,
    .about-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    /* Navbar improvements */
    .navbar {
        position: sticky;
        top: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        z-index: 3000;
        background: #fff;
    }
    .nav-logo, .nav-link, .btn-get-started {
        min-height: 44px;
        min-width: 44px;
        font-size: 1.05rem;
    }
    .nav-link {
        padding: 0.7rem 0;
    }
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
    }
    /* Hero section improvements */
    .hero {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .hero-img {
        max-width: 95vw;
        height: auto;
        margin: 0 auto;
    }
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.7rem;
        min-height: 44px;
        font-size: 1.05rem;
    }
    /* Service cards improvements */
    .services-grid {
        gap: 1.5rem;
    }
    .service-card {
        border: 1.5px solid var(--gray-200);
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
    }
    .service-icon {
        font-size: 2.2rem;
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    /* Packages improvements */
    .packages-grid {
        gap: 1.5rem;
    }
    .package-card {
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
        border: 1.5px solid var(--gray-200);
    }
    .package-card.featured {
        background: var(--gray-50);
        border: 2px solid var(--primary-blue);
    }
    .package-card .btn {
        width: 100%;
        min-height: 44px;
        font-size: 1.05rem;
    }
    /* Steps improvements */
    .steps-grid {
        gap: 1.5rem;
    }
    .step-card {
        margin-bottom: 1.2rem;
        padding: 1.2rem 0.7rem;
    }
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    /* About improvements */
    .about-description, .about-text {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .about-values i {
        font-size: 1.5rem;
    }
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .stat-card {
        margin-bottom: 0.7rem;
        padding: 0.7rem 0.2rem;
    }
    /* FAQ improvements */
    .faq-list {
        margin-top: 1.2rem;
    }
    .faq-item {
        margin-bottom: 1rem;
    }
    .faq-question {
        padding: 1.2rem 1.2rem 1.2rem 1rem;
        font-size: 1.05rem;
        min-height: 44px;
    }
    .faq-question::after {
        font-size: 1.2rem;
        transition: transform 0.3s;
    }
    .faq-question[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
    .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
        font-size: 1.05rem;
        background: var(--gray-50);
        border-top: 1px solid var(--gray-200);
    }
    /* Contact improvements */
    .contact-info {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }
    .contact-list li {
        min-height: 44px;
        font-size: 1.05rem;
    }
    .contact-form input, .contact-form textarea, .contact-form select {
        font-size: 1.05rem;
        padding: 0.9rem;
        min-height: 44px;
        width: 100%;
    }
    .contact-form .btn {
        width: 100%;
        min-height: 44px;
        font-size: 1.05rem;
    }
    .social-icons a {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    /* Footer improvements */
    .footer-bottom {
        font-size: 1.05rem;
        margin-top: 1.5rem;
        line-height: 1.6;
        padding: 1.2rem 0.5rem;
        background: var(--gray-50);
    }
    .footer-bottom a {
        font-size: 1.05rem;
        min-height: 44px;
        display: inline-block;
    }
    /* General improvements */
    body, .section, .container, .service-card, .package-card, .step-card, .faq-item, .contact-form, .stat-card {
        font-size: 1.05rem;
    }
    * {
        box-sizing: border-box;
    }
    html, body {
        overflow-x: hidden !important;
    }
}
@media (max-width: 400px) {
    .section-title, .hero-title {
        font-size: 1.1rem;
    }
    .btn, .btn-primary, .btn-secondary {
        font-size: 1rem;
        padding: 0.7rem 1rem;
        min-height: 44px;
    }
    .faq-question {
        font-size: 1rem;
    }
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid var(--gray-100);
}
.service-card:hover {
    box-shadow: 0 12px 32px rgba(37,99,235,0.10);
    transform: translateY(-8px) scale(1.03);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-yellow), var(--primary-blue));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-800);
}
.service-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Packages Section --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.package-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1.5px solid var(--gray-100);
}
.package-card.featured {
    border: 2.5px solid var(--secondary-yellow);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
    transform: scale(1.05);
    z-index: 1;
}
.package-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}
.package-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}
.package-price span {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 400;
}
.package-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.5rem 0;
    text-align: left;
}
.package-card ul li {
    margin-bottom: 0.7rem;
    color: var(--gray-700);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.package-card .btn {
    display: inline-block;
    width: auto;
    margin: 1rem auto 0 auto;
    text-align: center;
}

/* --- How It Works Section --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.step-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid var(--gray-100);
}
.step-card:hover {
    box-shadow: 0 8px 24px rgba(37,99,235,0.10);
    transform: translateY(-6px) scale(1.02);
}
.step-number {
    width: 48px;
    height: 48px;
    background: var(--secondary-yellow);
    color: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem auto;
}
.step-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}
.step-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
}

/* --- About Section --- */
.about-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2.5rem;
}
.about-text {
    flex: 2 1 320px;
    min-width: 280px;
}
.about-description {
    color: var(--gray-700);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.about-values {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-values li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 1rem;
}
.about-values i {
    color: var(--secondary-yellow);
    font-size: 1.3rem;
}
.about-stats {
    flex: 1 1 220px;
    min-width: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.stat-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    padding: 1.2rem 0.5rem;
}
.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-yellow);
    margin-bottom: 0.3rem;
}
.stat-label {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* --- Contact Section --- */
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2.5rem;
}
.contact-info {
    flex: 1 1 260px;
    min-width: 220px;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.5rem 0;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
    font-size: 1rem;
}
.contact-list i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.3s;
}
.social-icons a:hover {
    background: var(--secondary-yellow);
    color: var(--gray-900);
    transform: translateY(-2px);
}
.contact-form-wrapper {
    flex: 2 1 320px;
    min-width: 280px;
}
.contact-form {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    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-privacy-note {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 1rem;
}
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* --- Responsive Tweaks --- */
@media (max-width: 900px) {
    .about-flex, .contact-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .services-grid, .packages-grid, .steps-grid, .about-stats {
        grid-template-columns: 1fr;
    }
    .about-flex, .contact-flex {
        gap: 1.2rem;
    }
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    margin-top: 2.5rem;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 8px 24px rgba(37,99,235,0.10);
}
.faq-question {
    width: 100%;
    padding: 1.5rem 2rem 1.5rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gray-800);
    transition: background 0.2s;
    outline: none;
    position: relative;
}
.faq-question::after {
    content: '\25BC';
    font-size: 1.1rem;
    color: var(--secondary-yellow);
    margin-left: auto;
    transition: transform 0.3s;
}
.faq-question[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
    display: none;
    font-size: 1rem;
    animation: fadeIn 0.4s;
}
.faq-answer.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- Enhanced Animations --- */
[data-aos] {
    transition-property: opacity, transform, box-shadow;
    transition-duration: 0.7s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
}
.service-card, .package-card, .step-card, .stat-card, .faq-item {
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
}
.service-card:hover, .package-card:hover, .step-card:hover, .faq-item:hover {
    box-shadow: 0 16px 40px rgba(37,99,235,0.13);
    transform: translateY(-8px) scale(1.04);
    background: var(--gray-50);
}
.btn, .btn-primary, .btn-secondary {
    transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.btn:active {
    transform: scale(0.97);
}

/* Center align footer information */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.7;
}
.footer-bottom a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: var(--secondary-yellow);
} 