/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A90E2;
    --secondary-color: #7B68EE;
    --accent-color: #00CED1;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --success-color: #48bb78;
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #7B68EE 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --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 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    /* Light Mode Colors (Default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #ffffff;
    --card-bg: #ffffff;
    --nav-bg: #ffffff;
    --footer-bg: #1a1a2e;
    --hero-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --section-bg: #f8f9fa;
}

/* Dark Mode Colors */
[data-theme="dark"] {
    --text-color: #e4e4e7;
    --text-light: #a1a1aa;
    --border-color: #3f3f46;
    --bg-primary: #18181b;
    --bg-secondary: #27272a;
    --bg-tertiary: #3f3f46;
    --card-bg: #27272a;
    --nav-bg: #1a1a1f;
    --footer-bg: #0f0f14;
    --hero-gradient: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
    --section-bg: #1f1f23;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.3);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--nav-bg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Navigation Logo - Transparent Background */
.nav-logo {
    height: 40px;
    width: 40px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

[data-theme="dark"] .nav-logo img {
    filter: drop-shadow(0 1px 2px rgba(255,255,255,0.1));
}

.nav-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
    margin-right: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Nav Right Container */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 100%);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    margin-left: 15px;
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

[data-theme="dark"] .theme-toggle-btn {
    background: linear-gradient(135deg, #2d1b69 0%, #1a1a2e 100%);
    box-shadow: 0 2px 8px rgba(123, 104, 238, 0.3);
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.5);
}

.theme-toggle-btn:active {
    transform: scale(0.95);
}

.theme-toggle-btn span {
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    pointer-events: none;
}

#themeIcon {
    font-size: 22px;
    line-height: 1;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: var(--hero-gradient);
    min-height: 600px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.badge-24-7 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.badge-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Hero Image */
.hero-image {
    padding-left: 3rem;
}

.hero-image-container {
    position: relative;
    padding: 2rem;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 180px;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(74, 144, 226, 0.3));
    animation: gentlePulse 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Floating Cards with Orbital Animation */
.hero-image-container .floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
}

[data-theme="dark"] .hero-image-container .floating-card {
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-image-container .floating-card:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 32px rgba(74, 144, 226, 0.3);
    z-index: 20;
}

.card-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4A90E2 0%, #7B68EE 100%);
    border-radius: 10px;
}

.hero-image-container .floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
}

/* Orbital Animation */
@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(180px) rotate(-360deg);
    }
}

.floating-card[data-orbit="1"] {
    animation: orbit 20s linear infinite;
    animation-delay: 0s;
}

.floating-card[data-orbit="2"] {
    animation: orbit 20s linear infinite;
    animation-delay: -3.33s;
}

.floating-card[data-orbit="3"] {
    animation: orbit 20s linear infinite;
    animation-delay: -6.66s;
}

.floating-card[data-orbit="4"] {
    animation: orbit 20s linear infinite;
    animation-delay: -10s;
}

.floating-card[data-orbit="5"] {
    animation: orbit 20s linear infinite;
    animation-delay: -13.33s;
}

.floating-card[data-orbit="6"] {
    animation: orbit 20s linear infinite;
    animation-delay: -16.66s;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
    transition: background 0.3s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--section-bg);
    transition: background 0.3s ease;
}

.steps-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.step p {
    color: var(--text-light);
    padding: 0 0.5rem;
}

.steps-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 20%, var(--primary-color) 80%, transparent 100%);
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 150px;
}

.app-btn:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.app-icon {
    width: 28px;
    height: 28px;
    fill: white;
    flex-shrink: 0;
}

.app-text {
    text-align: left;
}

.app-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1;
}

.app-store {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 2px;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 3rem 0 1rem;
    transition: background 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 30px;
    width: 30px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.badge-24-7-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.badge-24-7-footer svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.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);
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 1rem;
    z-index: 9999;
    transition: bottom 0.3s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-accept {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
}

/* Loading state for buttons */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert styles for form messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.alert-success {
    background: rgba(72, 187, 120, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

[data-theme="dark"] .alert-success {
    background: rgba(72, 187, 120, 0.2);
}

/* Notification styles */
.notification {
    position: fixed;
    top: -100px;
    right: 20px;
    background: var(--card-bg);
    color: var(--text-color);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transition: top 0.3s ease;
    max-width: 350px;
}

.notification.show {
    top: 80px;
}

.notification-info {
    border-left: 4px solid var(--primary-color);
}

.notification-success {
    border-left: 4px solid var(--success-color);
}

.notification-error {
    border-left: 4px solid #f56565;
}

/* Tooltip styles */
.tooltip {
    position: absolute;
    background: var(--dark-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tooltip.show {
    opacity: 1;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--dark-color);
}

/* Tab functionality styles */
.category-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.tab-content {
    min-height: 300px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SERVICES PAGE SPECIFIC STYLES
   ============================================ */

/* Free App Banner */
.free-app-banner {
    background: var(--gradient-primary);
    padding: 2rem 0;
    margin: -2rem 0 3rem 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.banner-icon {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.free-app-banner .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    white-space: nowrap;
}

.free-app-banner .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Service Main Cards */
.service-main-card {
    position: relative;
}

.service-main-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.2);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.service-features {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.service-features li {
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Service Categories Grid */
.service-categories {
    background: var(--section-bg);
}

.service-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.category-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Why Services Section */
.why-services {
    background: var(--bg-primary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

.about-hero-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.hero-badge svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.about-hero-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-lead strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.hero-feature strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.hero-feature span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: var(--section-bg);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.choose-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.choose-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.choose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.choose-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.commitment-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.commitment-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.commitment-list {
    margin: 2rem 0;
}

.commitment-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.commitment-icon {
    font-size: 2rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.commitment-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.commitment-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.commitment-footer {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2rem;
    opacity: 0.95;
}

/* Commitment Stats */
.commitment-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-box:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.stat-box .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-box .stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Coverage Section */
.coverage-section {
    padding: 5rem 0;
    background: var(--section-bg);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coverage-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.coverage-card.active {
    border-color: var(--success-color);
}

.coverage-card.coming {
    border-color: var(--accent-color);
    opacity: 0.8;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.city-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coverage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.coverage-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.coverage-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--success-color);
    color: white;
}

.coverage-badge.coming {
    background: var(--accent-color);
}

/* CTA Features */
.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-features span {
    color: white;
    opacity: 0.9;
    font-size: 1rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Dark Mode Adjustments */
[data-theme="dark"] .hero-feature {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .choose-card {
    background: var(--bg-secondary);
}

[data-theme="dark"] .coverage-card {
    background: var(--bg-secondary);
}

[data-theme="dark"] .process-timeline::before {
    opacity: 0.2;
}

[data-theme="dark"] .commitment-section .stat-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .commitment-section .stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .free-app-banner .banner-content {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .free-app-banner .btn {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"] .free-app-banner .btn:hover {
    background: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-image {
        padding-left: 2rem;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }
    
    .steps-line {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-hero-content h2 {
        font-size: 2.5rem;
    }
    
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .banner-content {
        gap: 1.5rem;
    }
    
    .banner-text h3 {
        font-size: 1.3rem;
    }
    
    @keyframes orbit {
        from {
            transform: rotate(0deg) translateX(150px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(150px) rotate(-360deg);
        }
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--nav-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .theme-toggle-btn {
        width: 40px;
        height: 40px;
        margin-left: 10px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .theme-toggle-btn span {
        font-size: 20px;
    }
    
    #themeIcon {
        font-size: 20px;
    }
    
    .nav-logo {
        height: 35px;
        width: 35px;
    }
    
    .footer-logo {
        height: 25px;
        width: 25px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }

    .hero-image {
        padding-left: 0;
    }

    .hero-image-container {
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .hero-main-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .service-category-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .about-hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-lead {
        font-size: 1.15rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 50px;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .banner-icon {
        font-size: 2.5rem;
    }
    
    .banner-text h3 {
        font-size: 1.25rem;
    }
    
    .free-app-banner .btn {
        width: 100%;
        max-width: 250px;
    }
    
    @keyframes orbit {
        from {
            transform: rotate(0deg) translateX(120px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(120px) rotate(-360deg);
        }
    }
    
    .hero-image-container .floating-card {
        min-width: 120px;
        padding: 0.75rem;
    }
    
    .hero-image-container .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-main-image {
        width: 120px;
        height: 120px;
    }
    
    .hero-image-container {
        min-height: 350px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .about-hero-section {
        padding: 3rem 0;
    }
    
    .about-hero-content h2 {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-feature {
        padding: 1rem;
    }
    
    .choose-card {
        padding: 1.5rem;
    }
    
    .choose-icon {
        width: 60px;
        height: 60px;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .commitment-text h2 {
        font-size: 2rem;
    }
    
    .commitment-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .city-icon {
        font-size: 2.5rem;
    }
    
    .free-app-banner {
        padding: 1.5rem 0;
    }
    
    .banner-content {
        padding: 1rem;
    }
    
    .banner-icon {
        font-size: 2rem;
    }
    
    .banner-text h3 {
        font-size: 1.1rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
    }
    
    @keyframes orbit {
        from {
            transform: rotate(0deg) translateX(90px) rotate(0deg);
        }
        to {
            transform: rotate(360deg) translateX(90px) rotate(-360deg);
        }
    }
    
    .hero-image-container .floating-card {
        min-width: 100px;
        padding: 0.5rem;
    }
    
    .hero-image-container .floating-card span {
        font-size: 0.75rem;
    }
    
    .hero-image-container .card-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .floating-card.card-5,
    .floating-card.card-6 {
        display: none;
    }
    
    .theme-toggle-btn {
        width: 38px;
        height: 38px;
        margin-left: 8px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .theme-toggle-btn span {
        font-size: 18px;
    }
    
    #themeIcon {
        font-size: 18px;
    }
    
    .nav-right {
        gap: 0.25rem;
    }
}

/* Touch interaction optimization for mobile */
@media (hover: none) and (pointer: coarse) {
    .theme-toggle-btn {
        -webkit-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Accessibility - Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .floating-card,
    .hero-logo-img {
        animation: none !important;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}