/* Ana Sayfa CSS */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header-area {
    position: relative;
    z-index: 1000;
}

.top-bar {
    font-size: 0.875rem;
}

.contact-info span {
    margin-right: 1rem;
}

.social-links a {
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffc107 !important;
}

.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Hero Content Enhancements */
.hero-badge-top {
    animation: fadeInDown 1s ease-out;
    margin-top: 2rem;
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-features {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-scroll-indicator {
    animation: fadeInUp 1s ease-out 1s both;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 1rem;
    display: block;
}

.feature-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-scroll-indicator {
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-scroll-indicator a:hover {
    color: #ffc107 !important;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Quick Call Section */
.quick-call-section {
    position: relative;
    overflow: hidden;
}

.quick-call-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Campaign Section */
.campaign-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    position: relative;
}

.campaign-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    color: #333;
}

.campaign-card h4 {
    color: #333 !important;
    font-weight: 700;
}

.campaign-card p {
    color: #666 !important;
}

.campaign-card .campaign-price {
    color: #333 !important;
}

.campaign-card .old-price {
    color: #999 !important;
}

.campaign-card .new-price {
    color: #28a745 !important;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.campaign-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--danger-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    transform: rotate(15deg);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.campaign-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.campaign-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.campaign-price .new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

/* Pricing Section */
.pricing-section {
    background-color: var(--light-color);
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.km-calculator {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
}

.price-list {
    max-height: 400px;
    overflow-y: auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price-service {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.price-service i {
    margin-right: 0.75rem;
    width: 20px;
}

.price-amount {
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-note {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.about-badge i {
    margin-right: 0.5rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.about-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.highlight-item i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

/* New Highlight Cards */
.highlight-card {
    background: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-text h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.highlight-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Statistics */
.stats-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}


/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="30" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.testimonials-section .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    z-index: 1;
}

.testimonial-card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonial-card:nth-child(3) { animation-delay: 0.5s; }

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.testimonial-card:hover::after {
    animation: shimmer 0.8s ease-in-out;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.customer-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.customer-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    border-radius: 50%;
    z-index: -1;
    animation: avatarGlow 2s ease-in-out infinite alternate;
}

.testimonial-card:hover .customer-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

@keyframes avatarGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

.customer-details {
    flex: 1;
}

.customer-name {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.customer-title {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1rem;
}

.customer-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 15px;
    background: linear-gradient(135deg, #feca57, #ff9ff3);
    border-radius: 2px;
}

.customer-location {
    color: #888;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    display: inline-flex;
    transition: all 0.3s ease;
}

.customer-location i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-card:hover .customer-location {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

.rating {
    display: flex;
    gap: 3px;
    padding: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    align-items: center;
}

.rating .fas.fa-star {
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.rating .fas.fa-star.active {
    color: #ffc107;
    transform: scale(1.1);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 8px #ffc107); }
}

.testimonial-card:hover .rating .fas.fa-star.active {
    color: #ffb300;
    animation: starSpin 0.6s ease-in-out;
}

@keyframes starSpin {
    0% { transform: scale(1.1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
    100% { transform: scale(1.1) rotate(360deg); }
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    z-index: 0;
    animation: quoteFloat 3s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

.testimonial-text {
    color: #444;
    line-height: 1.8;
    font-style: italic;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    opacity: 0.7;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-badge::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;
}

.service-badge:hover::before {
    left: 100%;
}

.service-badge i {
    margin-right: 0.6rem;
    font-size: 0.9rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.testimonial-card:hover .service-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.testimonial-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 1.5rem;
    text-align: center;
    position: relative;
}

.testimonial-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1px;
}

.testimonial-date {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    background: rgba(102, 126, 234, 0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonial-date i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-card:hover .testimonial-date {
    background: rgba(102, 126, 234, 0.15);
    transform: scale(1.05);
}

/* Testimonials More Button */
.btn-testimonials-more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-testimonials-more .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-testimonials-more .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-testimonials-more:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4c93 100%);
}

.btn-testimonials-more:hover .btn-shine {
    left: 100%;
}

.btn-testimonials-more:active {
    transform: translateY(-1px) scale(1.02);
}

/* Modal Testimonials */
.modal-testimonial {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.modal-testimonial:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.modal-testimonial .customer-info {
    margin-bottom: 1rem;
}

.modal-testimonial .customer-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.modal-testimonial .testimonial-text {
    margin-left: 0;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    opacity: 0.9;
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    color: #333;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-contact p {
    margin: 0;
    opacity: 0.8;
}

/* Google Maps Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-info-card {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    max-width: 300px;
}

.map-info-card .card {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.map-info-card .card-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-info-card .card-text {
    color: #666;
    font-size: 0.9rem;
}

.map-info-card .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

@media (max-width: 768px) {
    .map-info-card {
        position: static;
        max-width: none;
        margin: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Emergency Call Button */
.emergency-call {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.emergency-call .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.emergency-call.pulse {
    animation: emergencyPulse 1s ease-in-out;
}

@keyframes emergencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Custom Alert System */
.custom-alert {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

.custom-alert.alert-success {
    background: var(--success-color);
    color: white;
}

.custom-alert.alert-error {
    background: var(--danger-color);
    color: white;
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation Classes */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
        padding: 1rem 2rem;
    }
    
    .hero-scroll-indicator {
        margin-top: 3rem;
    }
    
    .hero-badge-top {
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .highlight-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .customer-info {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .customer-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .customer-name {
        font-size: 1.1rem;
    }
    
    .customer-title {
        font-size: 0.9rem;
        padding-left: 0;
        text-align: center;
    }
    
    .customer-title::before {
        display: none;
    }
    
    .testimonial-text {
        margin-left: 0;
        text-align: center;
        font-size: 1rem;
    }
    
    .testimonial-text::before {
        display: none;
    }
    
    .quote-icon {
        position: static;
        text-align: center;
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }
    
    .rating {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .service-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-testimonials-more {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .campaign-card,
    .service-card,
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .campaign-card {
        padding: 2.5rem 1.5rem 2rem 1.5rem;
    }
    
    .campaign-badge {
        top: 10px;
        right: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .emergency-call {
        bottom: 1rem;
        right: 1rem;
    }
    
    .emergency-call .btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .custom-alert {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
    
    .contact-item {
        text-align: center;
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .row > div {
        text-align: center !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .quick-call-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #1e7e34 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, #e0a800 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #bd2130 100%);
}

/* Print Styles */
@media print {
    .header-area,
    .emergency-call,
    .custom-alert {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        background: none !important;
        color: #000 !important;
    }
}
