/* style_main.css - Combined Styles for TaaTransport Website */

/* ============================================
   CSS Variables & Global Styles
   ============================================ */

:root {
    /* Brand Colors */
    --green-primary: #00A89C;
    --green-secondary: #00B4A6;
    --grey-dark: #3A353A;
    --yellow-accent: #FFF200;
    --black: #000000;
    --white: #ffffff;
    --grey-light: #f8f9fa;
    --grey-medium: #7C848D;
    --green-light: rgba(0, 168, 156, 0.15);
    --green-lighter: rgba(0, 168, 156, 0.08);
    --error-color: #ff6b6b;
    --success-color: #4CAF50;
    --warning-color: #ff9800;

    /* Compatibility Variables */
    --primary: #00A89C;
    --primary-light: rgba(0, 168, 156, 0.15);
    --primary-dark: #009488;
    --text: #3A353A;
    --text-light: #7C848D;
    --text-lighter: #adb5bd;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border: #e9ecef;
    --radius: 8px;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

/* ============================================
   Header & Navigation
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo i {
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 168, 156, 0.3);
}

/* Ensure mobile menu icon is visible on all backgrounds */
.mobile-menu-btn {

    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn .icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Menu open state */
.mobile-menu-btn.menu-open .icon {
    transform: rotate(90deg);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .mobile-menu-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .icon-bars-black,
    .icon-times-black {
        filter: invert(1); /* Makes black icons white in dark mode */
    }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-menu-open .mobile-menu-overlay {
    display: block;
}

/* Ensure header stays fixed on mobile */
@media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .hero {
        padding-top: 120px; /* Account for fixed header */
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
/* ============================================
   Buttons
   ============================================ */

.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 156, 0.3);
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span {
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background: transparent;
    color: var(--primary) !important;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 1px solid var(--primary);
    text-decoration: none !important;
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

/* ============================================
   Hero Section (Used on multiple pages)
   ============================================ */

.hero, .qa-hero, .review-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fdfc 0%, #f0f9f8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before,
.qa-hero::before,
.review-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.2) 100%),
        url('../images/bruksnys_sonas.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.hero::after,
.qa-hero::after,
.review-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 70%,
            rgba(255, 255, 255, 0) 100%),
        url('../images/didele_banga.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
}

.hero-overlay,
.qa-hero-overlay,
.review-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(248, 253, 252, 0.9) 0%,
        rgba(248, 253, 252, 0.7) 40%,
        rgba(248, 253, 252, 0.6) 60%,
        rgba(248, 253, 252, 0.8) 100%);
    z-index: 2;
}

.hero-content,
.qa-hero-content,
.review-hero-content {
    position: relative;
    z-index: 3;
}

.hero h1,
.qa-hero h1,
.review-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
}

.hero p,
.qa-hero p,
.review-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-content {
    max-width: 600px;
}

.qa-hero-content,
.review-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero specific for index.html */
.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   Calculator Preview (index.html)
   ============================================ */

.calculator-preview {
    background: var(--background);
}

.preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    min-height: 450px;
}

.preview-image {
    flex: 1;
    background: url('../images/fotelis.jpg') center/cover no-repeat;
    background-color: var(--primary-light);
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 5px;
    border-radius: 8px;
}

.preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 156, 0.03) 0%, rgba(0, 168, 156, 0.01) 100%);
    z-index: 1;
}

.preview-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text);
}

.preview-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.preview-features {
    list-style: none;
    margin: 28px 0;
}

.preview-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.preview-features i {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ============================================
   Features Section (index.html)
   ============================================ */

.features {
    background: var(--background-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--text);
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.4rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text);
}

.feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Reviews Section (index.html)
   ============================================ */

.reviews {
    background: white;
}

.reviews-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-quote {
    position: absolute;
    top: -20px;
    left: 48px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 168, 156, 0.3);
}

.review-text {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.7;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: url('../images/zmogus.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.author-info p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.review-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.review-controls button {
    background: none;
    border: none;
    color: var(--text-lighter);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    padding: 8px;
    border-radius: 6px;
}

.review-controls button:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.review-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Loading state */
.review-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--text-light);
}

.review-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Write Review Section */
.write-review-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid var(--primary);
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 168, 156, 0.2);
}

.write-review-btn:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 156, 0.3);
    border-color: var(--primary-dark);
}

/* ============================================
   Stats Section (index.html)
   ============================================ */

.stats {
    background: var(--background);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    text-align: center;
}

.stat-item {
    padding: 32px 24px;
}

.stat-item .number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* ============================================
   Q&A CTA Section (index.html)
   ============================================ */

.qa-cta {
    background:
        linear-gradient(rgba(0, 168, 156, 0.85), rgba(0, 180, 166, 0.85)),
        url('../images/banga_taskas.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    text-align: center;
    padding: 100px 0;
    color: white;
    position: relative;
}

.qa-cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.qa-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qa-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.qa-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white !important;
    font-weight: 600;
    padding: 16px 40px;
    border: 2px solid white;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    text-decoration: none !important;
}

.qa-link:hover {
    background: white;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ============================================
   Q&A Page Specific Styles
   ============================================ */

.qa-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.qa-category-btn {
    background: white;
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.qa-category-btn:hover,
.qa-category-btn.active {
    background: var(--primary-dark)
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 156, 0.2);
}

.qa-content {
    background: var(--background-alt);
padding: 80px 0;
}

.qa-section {
    margin-bottom: 64px;
    margin-top: 50px;
}

.qa-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-light);
}

.qa-section-title i {
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.qa-section-title h2 {
    font-size: 1.8rem;
    color: var(--text);
    font-weight: 600;
}

.qa-grid {
    display: grid;
    gap: 24px;
}

.qa-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.qa-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.qa-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background);
}

.qa-question h3 {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
    margin-right: 20px;
    flex: 1;
}

.qa-toggle {
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}

.qa-question:hover .qa-toggle {
    background: var(--primary);
    color: white;
}

.qa-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.qa-answer.active {
    padding: 0 24px 24px;
    max-height: 1000px;
}

.qa-answer-content {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.qa-answer p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.qa-answer ul, .qa-answer ol {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

.qa-answer li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.qa-answer strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   Review Form Page Specific Styles
   ============================================ */

.review-form-section {
    background: var(--background-alt);
}

.review-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.review-form {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.review-form h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text);
}

.review-form p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group label.required::after {
    content: ' *';
    color: var(--error-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary);
}

/* Rating Stars */
.rating-container {
    margin: 20px 0;
}

.rating-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.rating-label.required::after {
    content: ' *';
    color: var(--error-color);
}

.rating-stars {
    display: flex;
    gap: 8px;
    margin: 15px 0;
}

.star {
    font-size: 2.5rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.star:hover {
    transform: scale(1.1);
}

.star.active,
.star:hover,
.star:hover ~ .star {
    color: #FFD700;
}

.rating-description {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Submit Button */
.submit-btn {
    background: var(--primary);
    color: white !important;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 156, 0.3);
}

.submit-btn:disabled {
    background: var(--grey-medium);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Messages */
.message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeIn 0.3s ease;
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.error-message {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.message i {
    font-size: 1.5rem;
}

.message-content {
    flex: 1;
}

.message h3 {
    margin-bottom: 4px;
    font-weight: 600;
}

.message p {
    margin: 0;
    font-size: 0.95rem;
}

/* Review Guidelines */
.review-guidelines {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    border-left: 4px solid var(--primary);
}

.review-guidelines h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-guidelines ul {
    list-style: none;
    color: var(--text-light);
}

.review-guidelines li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
}

.review-guidelines li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Calculator CTA */
.calculator-cta {
    background: linear-gradient(rgba(0, 168, 156, 0.9), rgba(0, 180, 166, 0.9)),
                url('../images/banga_taskas.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 0;
    color: white;
}

.calculator-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.calculator-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.calculator-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary) !important;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid white;
}

.calculator-button:hover {
    background: transparent;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}
/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-indicator-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--grey-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    color: var(--green-primary);
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0, 168, 156, 0.3);
    border-radius: 12px;
    position: relative;
    transition: border-color 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: var(--green-primary);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.5;
    }
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }
}

/* ============================================
   Modern Minimalistic Footer
   ============================================ */

/* Remove old footer styles and add these new ones */

/* Footer Container */
.footer-minimal {
    background: var(--background);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    position: relative;
}

/* Floating effect */
.footer-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 50%,
        transparent 100%);
}

/* Main Content Grid */
.footer-content-minimal {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Brand Column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-logo i {
    color: var(--primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

.footer-logo:hover i {
    transform: rotate(-10deg);
}

.footer-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--background-alt);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark)
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link i {
    position: relative;
    z-index: 2;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 156, 0.2);
}

/* Links Columns */
.footer-links-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links-minimal {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-minimal li {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links-minimal li:hover {
    opacity: 1;
}

.footer-links-minimal a {
    color: var(--text-light);
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 4px 0;
}

.footer-links-minimal a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-links-minimal a i {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links-minimal a:hover i {
    opacity: 1;
    transform: translateX(2px);
}

/* Newsletter Section */
.footer-newsletter {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--background-alt);
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 168, 156, 0.1);
}

.newsletter-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 168, 156, 0.2);
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-minimal {
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 168, 156, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 168, 156, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content-minimal {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-minimal {
        padding: 40px 0 20px;
    }

    .footer-content-minimal {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .footer-links-minimal a {
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

    .footer-social {
        justify-content: center;
    }
}
/* ============================================
   Animation Classes
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 64px 0;
    }

    /* Hero Responsive */
    .hero,
    .qa-hero,
    .review-hero {
        padding: 140px 0 60px;
    }

    .hero h1,
    .qa-hero h1,
    .review-hero h1 {
        font-size: 2.4rem;
    }

    .hero p,
    .qa-hero p,
    .review-hero p {
        font-size: 1.1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Background Images */
    .hero::before,
    .qa-hero::before,
    .review-hero::before {
        width: 100%;
        clip-path: none;
        opacity: 0.15;
        background:
            linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)),
            url('../images/bruksnys_sonas.jpg') center/cover no-repeat;
    }

    .hero::after,
    .qa-hero::after,
    .review-hero::after {
        display: none;
    }

    /* Calculator Preview */
    .preview-card {
        flex-direction: column;
        min-height: 500px;
    }

    .preview-image {
        height: 250px;
        min-height: 250px;
        margin: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .preview-content {
        padding: 32px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature {
        padding: 24px;
    }

    /* Reviews */
    .review-card {
        padding: 32px 24px;
    }

    .review-quote {
        left: 24px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stat-item .number {
        font-size: 2.2rem;
    }

    /* Q&A Categories */
    .qa-categories {
        flex-direction: column;
        align-items: stretch;
    }

    .qa-category-btn {
        justify-content: center;
    }

    .qa-section-title h2 {
        font-size: 1.5rem;
    }

    .qa-question h3 {
        font-size: 1rem;
    }

    /* Review Form */
    .review-form {
        padding: 32px 24px;
    }

    .review-form h2 {
        font-size: 1.5rem;
    }

    .star {
        font-size: 2rem;
    }

    /* Write Review Button */
    .write-review-section {
        padding: 30px 20px;
        margin-top: 50px;
    }

    .write-review-btn {
        width: 100%;
        justify-content: center;
    }

    /* Calculator CTA */
    .calculator-cta h2 {
        font-size: 2rem;
    }

    .qa-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .qa-hero h1,
    .review-hero h1 {
        font-size: 2rem;
    }
    .nav-cta {
      display: none;
    }
    .section-title h2 {
        font-size: 1.8rem;
    }

    .preview-content {
        padding: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .qa-cta h2,
    .calculator-cta h2 {
        font-size: 1.8rem;
    }

    .qa-question {
        padding: 20px;
    }

    .calculator-cta,
    .qa-cta {
        padding: 80px 0;
    }
}

@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
    }

}

@media (min-width: 993px) {
    .preview-image {
        background-size: cover;
        background-position: center center;
    }
}
[file name]: style_main.css
/* Add these new styles at the end of the file, before the responsive styles */

/* ============================================
   Privacy Policy Page Specific Styles
   ============================================ */

.privacy-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fdfc 0%, #f0f9f8 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.2) 100%),
        url('../images/bruksnys_sonas.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.privacy-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 70%,
            rgba(255, 255, 255, 0) 100%),
        url('../images/didele_banga.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
}

.privacy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(248, 253, 252, 0.9) 0%,
        rgba(248, 253, 252, 0.7) 40%,
        rgba(248, 253, 252, 0.6) 60%,
        rgba(248, 253, 252, 0.8) 100%);
    z-index: 2;
}

.privacy-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
}

.privacy-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.privacy-hero .last-updated {
    font-size: 1rem;
    color: var(--text-lighter);
    margin-top: 20px;
}

/* Privacy Categories */
.privacy-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.privacy-categories-btn {
    background: white;
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
}

.privacy-categories-btn:hover,
.privacy-categories-btn.active {


    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 156, 0.2);
}

/* Privacy Content */
.privacy-content {
    background: var(--background-alt);
    padding: 80px 0;
}

.privacy-section {
    margin-bottom: 64px;
}

.privacy-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-light);
}

.privacy-section-title .icon {

    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.privacy-section-title h2 {
    font-size: 1.8rem;
    color: var(--text);
    font-weight: 600;
}

.privacy-grid {
    display: grid;
    gap: 24px;
}

.privacy-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.privacy-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.privacy-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--background);
}

.privacy-question h3 {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
    margin-right: 20px;
    flex: 1;
}

.privacy-toggle {
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
}

.privacy-question:hover .privacy-toggle {
    background: var(--primary);
    color: white;
}

.privacy-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.privacy-answer.active {
    padding: 0 24px 24px;
    max-height: 1000px;
}

.privacy-answer-content {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.privacy-answer p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.privacy-answer ul, .privacy-answer ol {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

.privacy-answer li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.privacy-answer strong {
    color: var(--text);
    font-weight: 600;
}

.privacy-answer h4 {
    font-size: 1rem;
    color: var(--text);
    margin: 20px 0 10px;
    font-weight: 600;
}

/* Contact Privacy Section */
.contact-privacy {
    background: linear-gradient(rgba(0, 168, 156, 0.85), rgba(0, 180, 166, 0.85)),
                url('../images/banga_taskas.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.contact-privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-privacy h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
}

.contact-privacy p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 40px 0;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.contact-method h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.response-time {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Update the active nav link color in header */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}
/* ============================================
   Contact Page Specific Styles
   ============================================ */

.contact-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8fdfc 0%, #f0f9f8 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.2) 100%),
        url('../images/bruksnys_sonas.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 70%,
            rgba(255, 255, 255, 0) 100%),
        url('../images/didele_banga.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(248, 253, 252, 0.9) 0%,
        rgba(248, 253, 252, 0.7) 40%,
        rgba(248, 253, 252, 0.6) 60%,
        rgba(248, 253, 252, 0.8) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--background-alt);
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text);
}

.contact-form p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.contact-method-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-method-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-method-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-method-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-method-card .contact-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    transition: var(--transition);
}

.contact-method-card .contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Info Section */
.contact-info-section {
    background: linear-gradient(rgba(0, 168, 156, 0.85), rgba(0, 180, 166, 0.85)),
                url('../images/banga_taskas.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.contact-info-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
}

.contact-info-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.4rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-method-card {
        padding: 24px;
    }

    .contact-info-section h2 {
        font-size: 2rem;
    }

    .contact-info-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-info-section h2 {
        font-size: 1.8rem;
    }
}
/* Terms & Conditions Modal Styling */
#terms-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.terms-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.terms-modal-header {
    padding: 30px 40px 20px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.terms-modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.terms-modal-body {
    padding: 30px 40px;
}

.terms-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-section h3 i {
    color: var(--green-primary);
    font-size: 1rem;
}

.terms-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.terms-section ul {
    margin: 10px 0 10px 20px;
    color: var(--text-light);
}

.terms-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.terms-modal-footer {
    padding: 20px 40px 30px;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--background-alt);
    border-radius: 0 0 16px 16px;
    position: sticky;
    bottom: 0;
}

#accept-terms {
    background: var(--green-primary);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#accept-terms:hover {
    background: var(--green-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 156, 0.3);
}

#close-terms {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 11;
}

#close-terms:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .terms-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .terms-modal-header,
    .terms-modal-body,
    .terms-modal-footer {
        padding: 20px 25px;
    }

    .terms-modal-header h2 {
        font-size: 1.5rem;
    }
}
/* Enhanced Route Summary Styles */
.enhanced-route-summary {
    position: absolute;
    top: 80px;
    left: 20px;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.enhanced-route-summary.collapsed {
    transform: translateX(-380px);
    opacity: 0.7;
}

.summary-header {
    background: linear-gradient(135deg, #04877f, #008d81);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: move;
}

.summary-header h3 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-close-summary {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-content {
    padding: 20px;
}

.distance-time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.distance-info, .time-info {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.info-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.info-value {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
}

.distance-accuracy, .time-calculation {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
}

.distance-accuracy.accurate {
    background: #d4edda;
    color: #155724;
}

.distance-accuracy.estimated {
    background: #fff3cd;
    color: #856404;
}

.time-calculation {
    background: #e3f2fd;
    color: #0d47a1;
    font-size: 11px;
}

.eta-info {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #04877f;
}

.route-details {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #495057;
}

.summary-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.btn-action {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #f8f9fa;
    color: #495057;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.waypoints-section {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.waypoint-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 8px;
}

.waypoint-item.via-point {
    border-left: 4px solid #ff9800;
}

.waypoint-item.stop-point {
    border-left: 4px solid #ff5722;
}

/* Dialog Styles */
.waypoint-dialog-overlay,
.export-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.waypoint-dialog,
.export-dialog {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.dialog-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.dialog-actions {
    padding: 20px;
    border-top: 1px solid #e
