﻿/* ========================================
   EROL NAKLİYAT - MAIN STYLESHEET
   ======================================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header & Menu */
.head {
    width: 100%;
    display: table;
    position: absolute;
    z-index: 99;
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.head>div:first-child {
    float: left;
    height: 85px;
    padding: 20px 30px;
    padding-left: 70px;
}

.head>div:first-child>a {
    text-decoration: none;
    display: block;
}

.logo-text {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.logo-slogan {
    color: #fff;
    font-size: 12px;
    letter-spacing: 3px;
    opacity: 0.9;
    margin-top: -5px;
}

.head>div:last-child {
    float: right;
    height: 100px;
    padding: 0 55px 0px 0px;
}

.head>div:first-child>a>img {
    width: 190px;
}

.head>div:last-child>ul {
    display: table-row;
    width: 100%;
    height: 100px;
    position: relative;
}

.head>div:last-child>ul>li {
    display: table-cell;
    vertical-align: middle;
    padding: 0 15px;
    position: relative;
}

.head>div:last-child>ul>li>a {
    color: #000000;
    display: block;
    letter-spacing: 1px;
    padding-bottom: 7px;
    border-bottom: 2px solid rgb(0 0 0 / 0%);
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.head>div:last-child>ul>li:hover>a {
    border-bottom: 2px solid #27ae60;
}

.head>div:last-child>ul>li>.active {
    border-bottom: 2px solid #27ae60;
}

/* Tel Button */
.tel-button {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    border: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.tel-button:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4) !important;
}

/* Dropdown Menu */
.altmenu {
    position: absolute;
    padding-top: 10px;
    display: none;
    z-index: 1000;
}

.altmenu>ul {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.altmenu>ul>li {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(204, 204, 204, 0.15);
    font-size: 14px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.altmenu>ul>li:last-child {
    border-bottom: none;
}

.altmenu>ul>li:hover {
    background: rgba(39, 174, 96, 0.2);
    border-bottom: 1px solid rgba(39, 174, 96, 0.5);
}

.altmenu>ul>li>a {
    color: #fff;
    padding: 0 5px;
    text-decoration: none;
    display: block;
}

.head>div:last-child>ul>li:hover>.altmenu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider */
.slider {
    height: 100%;
}

.slider img {
    width: 100%;
}

.slide-yazi {
    position: absolute;
    color: #fff;
    font-size: 28px;
    text-align: center;
    width: 100%;
    line-height: 35px;
    height: 100%;
    z-index: 9999999999;
    top: 0;
    left: 0;
    display: table;
    vertical-align: middle;
    background: rgba(0, 0, 0, 0.50);
}

.slide-yazi>div {
    display: table-cell;
    vertical-align: middle;
}

.slide-yazi>div>div {
    max-width: 800px;
    margin: 0 auto;
}

.slide-yazi>div>div>p {
    margin-bottom: 30px;
    font-size: 35px;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.80);
}

.slide-yazi>div>div>span {
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.80);
    font-family: 'futura_ltlight';
    font-size: 26px;
    font-style: italic;
    letter-spacing: 1px;
}

/* ========================================
   MODERN HOMEPAGE STYLES
   ======================================== */

/* Hero Slider */
.hero-slider-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 80%) 0%, rgb(0 0 0 / 60%) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-text-wrapper {
    max-width: 900px;
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9em;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4.5em;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-modern {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
}

.btn-modern:hover::before {
    width: 100%;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 1s;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

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

/* Features Section - Glassmorphism */
.features-modern {
    padding: 120px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.features-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85em;
    margin-bottom: 20px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 3em;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-modern h3 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card-modern p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* City Selector - Modern Design */
.city-selector-modern {
    padding: 120px 20px;
    background: #f8f9fa;
    position: relative;
}

.city-selector-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.selector-card {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.selector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.selector-form-modern {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    margin-top: 40px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 0.95em;
}

.input-wrapper select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05em;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.input-wrapper select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.btn-calculate {
    padding: 18px 50px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: end;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.5);
}

.btn-calculate i {
    margin-left: 8px;
}

/* Popular Routes - Cards */
.popular-routes-modern {
    padding: 120px 20px;
    background: white;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.route-card-modern {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    transition: all 0.4s ease;
}

.route-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.route-card-modern:hover::before {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.9) 0%, rgba(34, 153, 84, 0.9) 100%);
}

.route-card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 30px;
    text-align: center;
}

.route-icon {
    font-size: 3em;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.route-card-modern:hover .route-icon {
    transform: scale(1.2) rotate(10deg);
}

.route-card-modern h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 700;
}

.route-card-modern p {
    opacity: 0.95;
    font-size: 1.05em;
}

/* Stats Counter */
.stats-modern {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05)),
        linear-gradient(150deg, rgba(255,255,255,0.05) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.05) 87.5%, rgba(255,255,255,0.05));
    background-size: 80px 140px;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 4em;
    font-weight: 800;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-modern {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: #f5576c;
    font-weight: bold;
}

.author-info h4 {
    font-size: 1.1em;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.9em;
    opacity: 0.9;
}

/* CTA Section */
.cta-modern {
    padding: 120px 20px;
    background: white;
    text-align: center;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 80px 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-box h2 {
    font-size: 3em;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-phone-modern {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #667eea;
    padding: 22px 55px;
    border-radius: 50px;
    font-size: 1.8em;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-phone-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* 81 İl SEO Bölümü */
.all-cities-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.all-cities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1400px;
    margin: 50px auto 0;
    position: relative;
    z-index: 2;
}

.city-link-seo {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.city-link-seo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.city-link-seo:hover::before {
    left: 100%;
}

.city-link-seo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.seo-content-section {
    padding: 100px 20px;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-content-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.seo-content-section h3 {
    font-size: 1.8em;
    color: #667eea;
    margin: 40px 0 20px;
}

.seo-content-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.seo-content-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.seo-content-section ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05em;
    color: #555;
}

.seo-content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .head>div:first-child {
        padding-left: 30px;
    }
    
    .head>div:last-child {
        padding-right: 30px;
    }
    
    .head>div:last-child>ul>li {
        padding: 0 10px;
    }
    
    .head>div:last-child>ul>li>a {
        font-size: 12px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .head {
        position: relative;
        /* background: #333; */
    }
    
    .head>div:first-child,
    .head>div:last-child {
        float: none;
        display: block;
        height: auto;
        padding: 15px;
        text-align: center;
    }
    
    .head>div:last-child>ul {
        display: block;
        height: auto;
    }
    
    .head>div:last-child>ul>li {
        display: block;
        padding: 10px 0;
    }
    
    .altmenu {
        position: relative;
        padding-top: 0;
    }
    
    .altmenu>ul>li {
        padding-left: 30px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 2.5em;
    }

    .section-title {
        font-size: 2em;
    }

    .selector-form-modern {
        grid-template-columns: 1fr;
    }

    .btn-calculate {
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .selector-card {
        padding: 30px;
    }

    .cta-box {
        padding: 50px 30px;
    }

    .cta-box h2 {
        font-size: 2em;
    }

    .cta-phone-modern {
        font-size: 1.3em;
        padding: 18px 35px;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .city-link-seo {
        padding: 12px 15px;
        font-size: 0.9em;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 20px 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.about-hero h1 {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-section p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.mission-card, .vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.mission-card .icon, .vision-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.mission-card h3, .vision-card h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.mission-card p, .vision-card p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.value-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.value-card .icon {
    font-size: 3em;
    color: #667eea;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.7;
}

/* Stats About */
.stats-about {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 20px;
    color: white;
}

.stats-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item-about {
    text-align: center;
    padding: 30px;
}

.stat-number-about {
    font-size: 4em;
    font-weight: 800;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label-about {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
    padding: 100px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.team-card h4 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.team-card .role {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.7;
}

/* Certificates Section */
.certificates-section {
    padding: 100px 20px;
    background: white;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.certificate-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certificate-card:hover {
    border-color: #27ae60;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.15);
}

.certificate-icon {
    font-size: 4em;
    color: #27ae60;
    margin-bottom: 20px;
}

.certificate-card h4 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.certificate-card p {
    font-size: 0.95em;
    color: #666;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5em;
    }

    .about-hero p {
        font-size: 1.2em;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        width: 100%;
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 20px 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.services-hero h1 {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.services-hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Services Content */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.service-section {
    margin-bottom: 80px;
}

.service-card-large {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 100px rgba(102, 126, 234, 0.2);
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    color: white;
    margin: 0 auto 40px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.service-card-large:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.service-card-large h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 800;
}

.service-intro {
    font-size: 1.3em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
    color: #333;
}

.feature-item i {
    color: #27ae60;
    font-size: 1.3em;
}

.service-details {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.service-details h3 {
    font-size: 1.8em;
    color: #667eea;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 1.15em;
    line-height: 1.9;
    color: #666;
    text-align: justify;
}

/* Services Grid Section */
.services-grid-section {
    padding: 120px 20px;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.service-card-grid {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.service-card-grid:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.service-icon-grid {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.service-card-grid:hover .service-icon-grid {
    transform: scale(1.1) rotate(5deg);
}

.service-card-grid h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card-grid > p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    padding: 12px 0;
    font-size: 1em;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: #27ae60;
    font-size: 1.1em;
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5em;
    }

    .services-hero p {
        font-size: 1.2em;
    }

    .service-card-large {
        padding: 30px;
    }

    .service-card-large h2 {
        font-size: 2em;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
        font-size: 3em;
    }

    .service-features {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

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

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 20px 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.contact-hero h1 {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
}

.contact-wrapper {
    display: flex;
    margin-bottom: 80px;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: space-between;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-info-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
}

.contact-info-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #764ba2;
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
}

.contact-form-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.contact-form-card h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
}

.form-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #667eea;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05em;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    padding: 18px 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Map Section */
.map-section {
    margin: 80px 0;
    text-align: center;
}

.map-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
}

.map-subtitle {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 30px;
    margin-top: 60px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.quick-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.quick-contact-card h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.quick-contact-card p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5em;
    }

    .contact-hero p {
        font-size: 1.2em;
    }

    .contact-form-card {
        padding: 30px;
    }

    .contact-form-card h2 {
        font-size: 2em;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ROUTE DETAIL PAGE STYLES
   ======================================== */

/* Route Detail Container */
.route-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #666;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 600;
}

/* Route Hero */
.route-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.route-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.route-hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.route-hero p {
    font-size: 1.3em;
    opacity: 0.95;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.hero-badge-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Route Info Boxes */
.route-info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.info-box {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.info-box-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: white;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.info-box-title {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95em;
}

.info-box-value {
    font-size: 1.3em;
    color: #333;
    font-weight: 700;
}

/* Quick CTA Box */
.quick-cta-box {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.3);
}

.quick-cta-content {
    flex: 1;
    min-width: 300px;
}

.quick-cta-content h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: 700;
}

.quick-cta-content p {
    font-size: 1.1em;
    opacity: 0.95;
}

.quick-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #27ae60;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quick-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.content-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    line-height: 1.9;
}

.content-section h2 {
    color: #333;
    font-size: 2.2em;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 4px solid #667eea;
    font-weight: 800;
}

.content-section h3 {
    color: #667eea;
    font-size: 1.6em;
    margin: 30px 0 20px;
    font-weight: 700;
}

.content-section p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1em;
    text-align: justify;
}

.content-section ol,
.content-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-section li {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.05em;
    line-height: 1.8;
}

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    background: white;
}

.highlight-card i {
    color: #27ae60;
    font-size: 1.5em;
    flex-shrink: 0;
}

.highlight-card span {
    color: #333;
    font-size: 1.05em;
    font-weight: 500;
}

/* Price Section */
.price-section {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 20px 60px rgba(240, 147, 251, 0.3);
}

.price-section h3 {
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 800;
}

.price-range {
    font-size: 3em;
    font-weight: 800;
    margin: 30px 0;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.price-section p {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 30px;
}

.price-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.price-factor {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.price-factor h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 700;
}

.price-factor p {
    font-size: 1em;
    opacity: 0.9;
    margin: 0;
}

.price-cta {
    margin-top: 40px;
}

.price-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #f5576c;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.why-choose-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-choose-item:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    background: white;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.why-choose-item h4 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-choose-item p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.process-step h4 {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.faq-section h2 {
    color: #333;
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
    padding-bottom: 15px;
    border-bottom: 4px solid #667eea;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 25px;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: #667eea;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.faq-question:hover {
    color: #764ba2;
    background: #e9ecef;
}

.faq-question.active {
    color: #764ba2;
}

.faq-question::before {
    content: "Q:";
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 0.8em;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-answer {
    color: #555;
    padding: 20px 20px 20px 70px;
    line-height: 1.8;
    font-size: 1.05em;
    display: none;
}

.faq-answer.show {
    display: block;
}

/* Related Routes */
.related-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.related-route-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.related-route-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    background: white;
}

.related-route-card i {
    font-size: 2.5em;
    color: #667eea;
}

.related-route-card h4 {
    font-size: 1.2em;
    color: #333;
    margin: 0;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.3);
}

.cta-section h3 {
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

/* Route Detail Responsive */
@media (max-width: 768px) {
    .route-hero {
        padding: 50px 30px;
    }

    .route-hero h1 {
        font-size: 2em;
    }

    .route-hero p {
        font-size: 1.1em;
    }

    .content-section {
        padding: 30px 20px;
    }

    .content-section h2 {
        font-size: 1.8em;
    }

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .quick-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .price-range {
        font-size: 2em;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        justify-content: center;
    }
}