/* ============================
   Hasila App Landing Page
   Main Stylesheet
=============================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #00b4b6;
    --secondary-color: #007c8e;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 40px rgba(0, 180, 182, 0.2);
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    direction: rtl;
    overflow-x: hidden;
}

/* English (LTR) Support */
html[dir="ltr"] body {
    direction: ltr;
}

html[dir="ltr"] .hero-content {
    direction: ltr;
}

html[dir="ltr"] .hero-text {
    direction: ltr;
}

html[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

html[dir="ltr"] .simple-list {
    padding-right: 0;
    padding-left: 25px;
}

html[dir="ltr"] .simple-list li::before {
    right: auto;
    left: -20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.navbar {
    padding: 5px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    max-height: 100px;
}

.logo img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 50px;
}

.lang-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.lang-btn:hover {
    color: var(--secondary-color);
}

.lang-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

/* Remove old nav menu styles */
.nav-menu,
.nav-link,
.menu-toggle {
    display: none;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 105vh;
    padding: 140px 0 120px;
    background-image: url('img/hero-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
    direction: ltr;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 150px;
}

.hero-text {
    direction: rtl;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    margin-left: 200px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.btn-download {
    padding: 16px 36px;
    font-size: 18px;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-download:hover {
    animation: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

/* Hero Mockup Images */
.hero-image {
    max-width: 200px;
    position: relative;
    text-align: left;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.mockup-img-1 {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 30px;
}

.mockup-img-2,
.mockup-img-3 {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 30px;
    transform-origin: bottom center;
}

.mockup-img-2 {
    z-index: 1;
    bottom: 90px;
    right: 0px;
    transform: rotate(-15deg);
}

.mockup-img-3 {
    z-index: -1;
    bottom: 120px;
    right: 0px;
    opacity: 0.9;
    filter: blur(1px);
    transform: rotate(-25deg);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-20px);
    }
}

@keyframes floatTilt1 {
    0%, 100% { 
        transform: translateY(0) rotate(-15deg);
    }
    50% { 
        transform: translateY(-20px) rotate(-15deg);
    }
}

@keyframes floatTilt2 {
    0%, 100% { 
        transform: translateY(0) rotate(-25deg);
    }
    50% { 
        transform: translateY(-20px) rotate(-25deg);
    }
}

/* ===== Section Styles ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
}

/* ===== Features Section ===== */
.features {
    background: var(--white);
}

.features .container {
    max-width: 1600px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 350px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: var(--bg-light);
}

.how-it-works .container {
    max-width: 1400px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Mockup Showcase Section - Vertical Infinite Columns ===== */
.mockup-showcase {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.marquee-columns {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.marquee-column {
    flex: 1;
    max-width: 180px;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: marqueeDown 20s linear infinite;
}

.marquee-up .marquee-track {
    animation: marqueeUp 20s linear infinite;
}

/* Different speeds for each column */
.marquee-column:nth-child(1) .marquee-track {
    animation-duration: 85s;
}

.marquee-column:nth-child(2) .marquee-track {
    animation-duration: 78s;
}

.marquee-column:nth-child(3) .marquee-track {
    animation-duration: 85s;
}

.marquee-column:nth-child(4) .marquee-track {
    animation-duration: 80s;
}

.marquee-column:nth-child(5) .marquee-track {
    animation-duration: 85s;
}

.marquee-column img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    flex-shrink: 0;
}

/* Gradient fade top and bottom */
.marquee-column::before,
.marquee-column::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

@keyframes marqueeDown {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@keyframes marqueeUp {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}

/* ===== FAQ Section ===== */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 15px;
    background: var(--bg-light);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 182, 0.1);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin: 10px auto;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-bg-svg {
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    width: 100px;
    height: 60px;
    object-fit: contain;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer-buttons .btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
}

.footer-buttons .btn svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* ===== Scroll to Top ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===== Animations ===== */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .container {
        padding: 0 20px;
    }

    .logo img {
        width: 50px;
        height: 50px;
    }

    .navbar {
        padding: 4px 0;
    }

    .language-switcher {
        padding: 4px;
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 14px;
        font-size: 12px;
    }

    .hero {
        min-height: 90vh;
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
    }

    .hero-text {
        padding-top: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .btn {
        width: auto;
        max-width: 200px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero-image {
        text-align: center;
        min-height: auto;
        margin-left: 0;
    }

    .mockup-img-1 {
        max-width: 180px;
    }

    .mockup-img-2,
    .mockup-img-3 {
        max-width: 180px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 15px;
    }

    .faq-question {
        padding: 20px 25px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 25px 20px;
        font-size: 15px;
    }

    .marquee-columns {
        gap: 15px;
    }

    .marquee-column {
        max-width: 120px;
        height: 400px;
    }

    .marquee-track {
        gap: 20px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 15px;
    }

    .footer {
        padding: 50px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-buttons {
        align-items: center;
    }

    .footer-buttons .btn {
        max-width: 200px;
    }

    .social-links {
        justify-content: center;
    }

    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .logo img {
        width: 70px;
        height: 70px;
    }

    .navbar {
        padding: 3px 0;
    }

    .language-switcher {
        padding: 3px;
        gap: 4px;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .hero {
        padding: 150px 0 40px;
    }

    .hero-image {
        margin-left: 25%;
        margin-bottom: 0px;
    }

    .mockup-img-1 {
        max-width: 150px;
    }

    .mockup-img-2,
    .mockup-img-3 {
        max-width: 150px;
    }
    .mockup-img-2 {
        z-index: 1;
        bottom: 20px;
        left: 30px;
        transform: rotate(-15deg);
    }   

    .mockup-img-3 {
        z-index: -1;
        bottom: 40px;
        left: 35px;
        opacity: 0.9;
        filter: blur(1px);
        transform: rotate(-25deg);
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        gap: 8px;
    }

    .btn svg {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .section-description {
        font-size: 14px;
    }

    section {
        padding: 50px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 30px;
        height: 30px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 14px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    .marquee-columns {
        gap: 10px;
        overflow-x: auto;
        justify-content: center;
    }

    .marquee-column {
        max-width: 100px;
        height: 350px;
    }

    .marquee-column:nth-child(4),
    .marquee-column:nth-child(5) {
        display: none;
    }

    .marquee-track {
        gap: 15px;
    }

    .marquee-column::before,
    .marquee-column::after {
        height: 60px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 14px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo img {
        width: 80px;
        height: 50px;
    }

    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-description,
    .footer-links a,
    .footer-bottom {
        font-size: 13px;
    }

    .footer-buttons .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .social-links svg {
        width: 18px;
        height: 18px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        left: 15px;
    }

    .scroll-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== About Page Styles ===== */

/* About Hero Section */
.about-hero {
    height: 50vh;
    background-image: url('img/hero-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.about-hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* About Story Section */
.about-story {
    padding: 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-paragraph {
    font-size: 18px;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.about-logo-container {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 180, 182, 0.3);
    padding: 40px;
}

.about-logo {
    width: 100%;
    height: auto;
}

/* Vision & Mission Section - New Design */
.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.vm-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-card {
    flex: 1;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 180, 182, 0.15);
}

.vm-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.vm-content {
    position: relative;
}

.vm-number {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 120px;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1;
    z-index: 0;
}

.vm-text {
    font-size: 18px;
    line-height: 2;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.vm-divider {
    width: 2px;
    height: 150px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
}

/* Values Section - List Style */
.values {
    padding: 100px 0;
    background: var(--white);
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 20px;
    border-right: 5px solid var(--primary-color);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateX(-10px);
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.value-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
}

.value-content {
    flex: 1;
}

.value-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Team Section - Simple Box */
.team {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 60px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-top: 5px solid var(--primary-color);
}

.team-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-description {
    font-size: 18px;
    line-height: 2;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%23ffffff' 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");
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        height: 300px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-wrapper {
        flex-direction: column;
    }

    .vm-divider {
        width: 150px;
        height: 2px;
    }

    .value-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .value-number {
        font-size: 40px;
    }

    .team-box {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 45vh;
        background-position: center;
        padding: 120px 0 80px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-paragraph {
        font-size: 16px;
    }

    .about-logo-container {
        width: 150px;
        height: 150px;
        padding: 30px;
    }

    .vm-card {
        padding: 35px 25px;
    }

    .vm-badge {
        font-size: 14px;
        padding: 8px 20px;
    }

    .vm-number {
        font-size: 80px;
    }

    .vm-text {
        font-size: 16px;
    }

    .value-item {
        padding: 25px 20px;
    }

    .value-number {
        font-size: 32px;
    }

    .value-name {
        font-size: 20px;
    }

    .value-text {
        font-size: 15px;
    }

    .team-box {
        padding: 30px 20px;
    }

    .team-title {
        font-size: 24px;
    }

    .team-description {
        font-size: 16px;
    }
}

/* ============================================
   Privacy Policy Page Styles
   ============================================ */

/* Privacy uses About Hero styles - reuse .about-hero class */

/* Privacy Introduction */
.privacy-intro {
    padding: 60px 0 40px;
    background: var(--white);
}

.privacy-intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-paragraph {
    font-size: 18px;
    line-height: 2;
    color: var(--text-light);
}

/* Privacy Content - Simple Design */
.privacy-content {
    padding: 40px 0 80px;
    background: var(--white);
}

.privacy-simple-sections {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-simple-section {
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
}

.privacy-simple-section:last-child {
    border-bottom: none;
}

.simple-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.simple-section-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 15px;
}

.simple-list {
    margin: 15px 0;
    padding-right: 25px;
    list-style: none;
}

.simple-list li {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 12px;
    position: relative;
}

.simple-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    right: -20px;
}

.privacy-note {
    margin-top: 20px;
    padding: 20px 25px;
    background: var(--bg-light);
    border-radius: 12px;
    border-right: 4px solid var(--primary-color);
}

.privacy-note p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin: 0;
}

/* Privacy CTA - Simple Design */
.privacy-cta {
    padding: 60px 0;
    background: var(--bg-light);
}

.privacy-cta .cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 180, 182, 0.2);
    text-align: center;
}

.privacy-cta .cta-content {
    margin-bottom: 25px;
}

.privacy-cta .cta-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.privacy-cta .cta-description {
    font-size: 16px;
    color: var(--white);
    opacity: 0.95;
    margin: 0;
}

.privacy-cta .btn-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.privacy-cta .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.privacy-cta .btn-white svg {
    transition: var(--transition);
}

.privacy-cta .btn-white:hover svg {
    transform: translateX(-3px);
}

/* Privacy Page Responsive */
@media (max-width: 768px) {
    .intro-paragraph {
        font-size: 16px;
    }

    .simple-section-title {
        font-size: 22px;
    }

    .simple-section-text {
        font-size: 16px;
    }

    .simple-list li {
        font-size: 16px;
    }

    .privacy-cta .cta-box {
        padding: 35px 30px;
    }

    .privacy-cta .cta-title {
        font-size: 22px;
    }

    .privacy-cta .cta-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .intro-paragraph {
        font-size: 15px;
    }

    .privacy-simple-section {
        padding: 30px 0;
    }

    .simple-section-title {
        font-size: 20px;
    }

    .simple-section-text {
        font-size: 15px;
    }

    .simple-list li {
        font-size: 15px;
    }

    .privacy-cta .cta-box {
        padding: 30px 20px;
    }

    .privacy-cta .cta-title {
        font-size: 20px;
    }

    .privacy-cta .cta-description {
        font-size: 14px;
    }

    .privacy-cta .btn-white {
        font-size: 15px;
        padding: 12px 28px;
    }
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 700;
}
