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

:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #81C784;
    --secondary-color: #8BC34A;
    --accent-color: #FF6B35;
    --text-primary: #212121;
    --text-secondary: #757575;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    color: var(--primary-color);
}

.logo-img g {
    fill: var(--primary-color) !important;
}

.logo-img path {
    fill: var(--primary-color) !important;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-rendering: optimizeLegibility;
    margin: 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-select {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: var(--transition);
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%234CAF50" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 35px;
    min-width: 90px;
}

.lang-select:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.lang-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}


/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
    letter-spacing: -0.01em;
}

.hero-badge i {
    font-size: 16px;
}

/* Key Highlights Section */
.key-highlights {
    padding: 60px 0;
    background: var(--bg-white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.highlight-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 30px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-height: 140px;
    justify-content: center;
}

.highlight-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}


.highlight-badge i {
    font-size: 32px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.highlight-badge span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Priority Features Section */
.priority-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.priority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.priority-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.priority-card.featured {
    border: 2px solid var(--primary-light);
}

.priority-card.mega {
    grid-column: 1 / -1;
    background: white;
    border: none;
    border-left: 6px solid var(--primary-color);
    position: static;
    padding: 40px 45px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0;
}

.priority-card.mega::before {
    display: none;
}

.priority-card.mega .priority-icon {
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 0;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.priority-card.mega .priority-icon i {
    color: white;
}

.priority-card.mega h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 800;
    flex: 1;
    align-self: center;
    background: linear-gradient(135deg, var(--primary-color), #2d7a2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.priority-card.mega p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    margin-top: 25px;
    width: 100%;
    flex-basis: 100%;
}

.priority-card.mega .feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px 20px;
    margin-top: 0;
    list-style: none;
    padding: 0;
    width: 100%;
    flex-basis: 100%;
}

.priority-card.mega .feature-list li {
    font-size: 0.95rem;
    padding: 8px 0 8px 28px;
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
}

.priority-card.mega .feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.priority-card.mega:hover {
    transform: none;
}

.priority-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.priority-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.priority-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.priority-card h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
    text-rendering: optimizeLegibility;
}

.priority-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

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

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    letter-spacing: -0.01em;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(76, 175, 80, 0.1);
}

.nav-link.active {
    color: white;
    background-color: var(--primary-color);
    font-weight: 600;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow-sm);
    font-size: 15px;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

/* Update button icons */
.btn-primary i,
.btn-secondary i {
    margin-right: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.045em;
    animation: fadeInUp 0.8s ease-out;
    text-rendering: optimizeLegibility;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s;
    animation-fill-mode: both;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s;
    animation-fill-mode: both;
}

.hero-buttons span {
    margin-right: 0.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s;
    animation-fill-mode: both;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* App Showcase Slider */
.app-showcase {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.app-slider {
    position: relative;
    border-radius: 30px;
    display: grid;
}

.slide {
    grid-area: 1 / 1;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease-in-out;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.phone-frame {
    position: relative;
    max-width: 300px;
    margin: 0 auto 20px;
}

.phone-frame img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
    transition: transform 0.3s ease;
}

.phone-frame:hover img {
    transform: scale(1.05);
}

.slide-info {
    text-align: center;
    margin-top: 20px;
}

.slide-info h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.slide-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Slider Navigation */
.slider-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    z-index: 10;
}

.nav-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary-light);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-rendering: optimizeLegibility;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

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

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.6;
    font-size: 1rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    letter-spacing: -0.02em;
}

.step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.step p {
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
}

.benefits .section-header h2,
.benefits .section-header p {
    color: white;
}

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

.benefit {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.benefit:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

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

.benefit h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.benefit p {
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.6rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    text-rendering: optimizeLegibility;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-download {
    background: var(--text-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    justify-content: center;
}

.btn-download:hover {
    background: #333;
    transform: scale(1.05);
}

.btn-appstore {
    min-width: 200px;
}

.btn-download img {
    width: 30px;
    height: 30px;
}

.btn-download div {
    text-align: left;
}

.btn-download span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-download strong {
    display: block;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--primary-color);
}

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

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

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

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

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

.social-links a {
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.2);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-actions {
        position: absolute;
        top: 70px;
        right: 15px;
        background: white;
        padding: 10px;
        border-radius: 10px;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        gap: 10px;
        z-index: 1001;
    }

    .lang-select {
        min-width: 80px;
        font-size: 12px;
        padding: 6px 8px;
        padding-right: 28px;
    }

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

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .highlight-badge {
        padding: 20px 15px;
        min-height: 120px;
        text-align: center;
    }

    .highlight-badge span {
        font-size: 14px;
        line-height: 1.4;
    }

    .app-showcase {
        max-width: 280px;
    }

    .slider-nav {
        gap: 15px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 32px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
        letter-spacing: -0.035em;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .section-header h2 {
        font-size: 2.1rem;
        letter-spacing: -0.03em;
    }

    .section-header p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .steps::before {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer Styles */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul li strong {
    color: var(--primary-color);
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section li.country-spacing {
    margin-top: 1.5rem;
}

.footer-section li i {
    color: var(--primary-light);
    width: 16px;
    text-align: center;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.social-links a i {
    color: white;
}

/* WhatsApp specific styling */
.social-links a[href*="wa.me"] {
    background: #25D366;
}

.social-links a[href*="wa.me"]:hover {
    background: #1ebe57;
}

/* Instagram specific styling */
.social-links a[href*="instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Email specific styling */
.social-links a[href*="mailto"] {
    background: #EA4335;
}

.social-links a[href*="mailto"]:hover {
    background: #d33b2c;
}

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

/* Phone Frame Mockup */
.phone-frame {
    position: relative;
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 35px;
    padding: 20px 15px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.1),
        inset 0 -2px 0 rgba(0,0,0,0.2);
    margin: 0 auto;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

/* App Store Official Button */
.btn-appstore-official {
    display: inline-block;
    transition: var(--transition);
    text-decoration: none;
}

.btn-appstore-official:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.appstore-badge {
    height: 200px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .appstore-badge {
        height: 150px;
    }
}
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 35px;
    padding: 20px 15px;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        inset 0 2px 0 rgba(255,255,255,0.1),
        inset 0 -2px 0 rgba(0,0,0,0.2);
    margin: 0 auto;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}