/**
 * SilverTransport - Main Stylesheet
 * Design & Software by OnurKüpeli
 * Modern, SEO-friendly, Mobile-first
 */

/* CSS Variables - Orange theme */
:root {
    /* Colors */
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fbbf24;
    --secondary: #111827;
    --dark: #1f2937;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
    --danger: #ef4444;
    
    /* Typography */
    --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

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

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary);
    background-color: #fff;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border: 2px solid #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

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

/* ==========================================
   HEADER STYLES
   ========================================== */

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1e2836 0%, #111827 100%);
    color: #fff;
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.top-contact-item:hover {
    color: var(--primary);
}

.top-contact-item i {
    color: var(--primary);
    font-size: 0.875rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-text {
    color: rgba(255,255,255,0.6);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.top-bar-right a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.8125rem;
    transition: all 0.2s;
}

.top-bar-right a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
    background: linear-gradient(135deg, #1e2836 0%, #111827 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.main-nav.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.main-nav .navbar-nav {
    gap: 0.125rem;
}

.main-nav .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    padding: 0.625rem 0.75rem !important;
    border-radius: var(--radius);
    transition: all 0.2s;
    position: relative;
    font-size: 0.9375rem;
    white-space: nowrap;
}

/* Large desktop screens - more padding */
@media (min-width: 1200px) {
    .main-nav .nav-link {
        padding: 0.625rem 1rem !important;
    }
    
    .main-nav .navbar-nav {
        gap: 0.25rem;
    }
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary);
    background: rgba(245, 158, 11, 0.15);
}

.main-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(245, 158, 11, 0.15) !important;
}

.main-nav .dropdown-menu {
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    min-width: 220px;
    margin-top: 0.5rem;
    background: #1f2937;
}

.main-nav .dropdown-item {
    border-radius: var(--radius);
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    color: white;
    transition: all 0.2s;
}

.main-nav .dropdown-item i {
    color: var(--primary);
    width: 20px;
}

.main-nav .dropdown-divider {
    border-color: rgba(245, 158, 11, 0.2);
    margin: 0.5rem 0;
}

.main-nav .dropdown-item:hover {
    background: rgba(245, 158, 11, 0.2);
    color: white;
    transform: translateX(5px);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.nav-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.nav-cta .btn-outline-primary {
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    background: transparent;
}

.nav-cta .btn-outline-primary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.nav-cta .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.nav-cta .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* Mobile Menu */
.navbar-toggler {
    border: 2px solid var(--primary);
    padding: 0.375rem 0.5rem;
    border-radius: var(--radius);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f59e0b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.25em;
    height: 1.25em;
}

/* Desktop (Large screens) */
@media (min-width: 1200px) {
    .main-nav .nav-link {
        padding: 0.5rem 0.875rem !important;
        font-size: 0.9375rem;
    }
    
    .nav-cta .btn {
        padding: 0.5rem 1.25rem;
    }
}

/* Tablet (Medium screens) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-brand img {
        height: 40px;
    }
    
    .main-nav .nav-link {
        padding: 0.5rem 0.625rem !important;
        font-size: 0.8125rem;
    }
    
    .nav-cta {
        margin-left: 0.5rem;
        gap: 0.375rem;
    }
    
    .nav-cta .btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .nav-cta .btn-outline-primary {
        display: none;
    }
}

/* Mobile (Small screens) */
@media (max-width: 991.98px) {
    .top-bar {
        padding: 0.25rem 0;
    }
    
    .top-bar-inner {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .top-bar-left {
        gap: 0.75rem;
    }
    
    .top-contact-item span {
        display: none;
    }
    
    .top-contact-item i {
        font-size: 0.875rem;
    }
    
    .top-bar-text {
        display: none !important;
    }
    
    .main-nav {
        padding: 0.25rem 0;
    }
    
    .navbar-brand img {
        height: 38px;
    }
    
    .main-nav .navbar-collapse {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 0.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-nav .navbar-nav {
        gap: 0;
    }
    
    .main-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 0.875rem;
    }
    
    .main-nav .dropdown-menu {
        background: #1f2937;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
    }
    
    .main-nav .dropdown-item {
        color: white;
        padding: 0.4rem 1rem;
        font-size: 0.8125rem;
    }
    
    .main-nav .dropdown-item:hover {
        background: rgba(245, 158, 11, 0.2);
        color: white;
    }
    
    .nav-cta {
        margin: 1rem 0 0 0;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }
    
    .nav-cta .btn-outline-primary {
        display: flex;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .top-bar-right a {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .navbar-brand img {
        height: 100px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: relative;
    height: 600px;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: #fff;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    transition: opacity 0.3s ease;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo {
    display: none;
    height: auto;
    width: 120px;
    margin-bottom: 1rem;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-logo {
        display: block;
        position: absolute;
        top: -150px;
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
        height: auto;
        z-index: 30;
    }
    
    .hero-buttons {
        position: static;
        width: 100%;
        justify-content: center;
        z-index: 20;
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 10px;
    }
    
    .hero-buttons .btn {
        flex: 0 1 auto;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        padding-bottom: 0;
        position: relative;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.85rem !important;
        margin-bottom: 10px;
        line-height: 1.3;
    }
}

/* Section Styles */
.section {
    padding: var(--section-padding) 0;
}

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

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: #1d2634;
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

/* ==========================================
   FOOTER STYLES
   ========================================== */

.site-footer {
    background: #1d2634;
    color: #fff;
}

/* Footer CTA */
.footer-cta {
    background: linear-gradient(135deg, #1e2836 0%, #111827 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-cta-content h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.footer-cta-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1.0625rem;
}

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-cta .btn-light {
    background: #fff;
    color: var(--primary-dark);
    border: none;
    font-weight: 600;
}

.footer-cta .btn-light:hover {
    background: var(--dark);
    color: #fff;
}

.footer-cta .btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.footer-cta .btn-outline-light:hover {
    background: #fff;
    color: var(--primary-dark);
}

/* Footer Main */
.footer-main {
	background: linear-gradient(135deg, #1e2836 0%, #111827 100%);
    padding: 4rem 0 3rem;
	position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.0625rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.footer-desc-small {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.625rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Footer Widget */
.footer-widget {
    padding-left: 0;
}

.footer-title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.footer-links a i {
    font-size: 0.625rem;
    color: var(--primary);
    transition: transform 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-list .contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-list .contact-icon i {
    color: var(--primary);
    font-size: 1rem;
}

.footer-contact-list .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-list .label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.footer-contact-list .value {
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
}

.footer-contact-list a.value:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.0);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.copyright {
    margin: 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Developer Credit - Kepez Web */
.kepez-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kepez-credit:hover {
    background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.05) 100%);
    border-color: rgba(245,158,11,0.3);
    color: rgba(255,255,255,0.8);
    transform: translateY(-1px);
}

.kepez-credit .credit-text {
    font-weight: 400;
    opacity: 0.8;
}

.kepez-credit .credit-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
    color: var(--primary);
}

.kepez-credit .credit-brand strong {
    font-weight: 700;
}

.kepez-credit .credit-icon {
    opacity: 0.8;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kepez-credit:hover .credit-icon {
    animation: pulse-icon 0.6s ease;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Footer Responsive */
@media (max-width: 991.98px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-widget {
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .kepez-credit {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        order: 3;
    }
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.whatsapp-float:hover {
    transform: translateZ(0) scale(1.1);
    color: #fff;
}

.phone-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
    transform: translateZ(0);
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--light);
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--gray);
}

.breadcrumb-item.active {
    color: var(--primary);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    padding: 4rem 0;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
}

/* Forms */
.form-control, .form-select {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

/* Cards */
.card {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991.98px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .top-bar-left a {
        display: block;
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 90px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .phone-float {
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ==========================================
   SWIPER SLIDER STYLES
   ========================================== */

/* Hero Slider Pagination */
.hero-slider .swiper-pagination {
    bottom: 30px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Testimonial Slider */
.testimonial-slider {
    padding-bottom: 50px;
}

.testimonial-slider .swiper-pagination {
    bottom: 0;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Testimonial Card Improvements */
.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    flex-grow: 1;
    min-height: 80px;
}

.swiper-slide {
    height: auto;
}

/* FAQ Accordion Styles */
.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* Image Lightbox Modal */
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.image-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.image-lightbox-close:hover {
    transform: scale(1.2);
}

@media (max-width: 767.98px) {
    .image-lightbox-close {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Area/Neighborhood Cards */
.area-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    height: 100%;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.area-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.area-card p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.neighborhood-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.neighborhood-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light);
    color: var(--secondary);
    font-size: 0.75rem;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.neighborhood-tag:hover {
    background: var(--primary);
    color: #fff;
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    font-size: 0.8125rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Alert Styles */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.alert i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-consent-text i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: var(--primary-light);
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-buttons .btn {
    white-space: nowrap;
}

.cookie-consent-buttons .btn-outline-secondary {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
}

.cookie-consent-buttons .btn-outline-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        flex-direction: column;
    }
    
    .cookie-consent-text i {
        font-size: 1.5rem;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================
   SEARCH MODAL
   ========================================== */

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: var(--primary);
    color: #fff;
}

.search-modal-content {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
}

.search-modal-content .modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.search-modal-content .modal-body {
    padding: 1.5rem;
}

.search-form .input-group {
    margin-bottom: 1rem;
}

.search-form .form-control {
    border-radius: var(--radius) 0 0 var(--radius);
    border: 2px solid #e2e8f0;
    border-right: none;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.search-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
    outline: none;
}

.search-form .form-control::placeholder {
    color: #999;
}

.search-form .btn {
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 0 1.5rem;
    border: 2px solid var(--primary);
    font-weight: 600;
}

.search-form .btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.search-result-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: var(--light);
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
    border-left-color: var(--primary);
}

.search-result-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.search-result-content h6 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.search-result-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
}

.search-result-type {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    background: var(--primary);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-left: 0.5rem;
}

.search-suggestions {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.search-suggestions h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.search-suggestions .badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #ddd;
}

.search-suggestions .badge:hover {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
}

/* Search Modal Responsive */
@media (max-width: 768px) {
    .search-modal-content {
        max-height: 95vh;
    }
    
    .search-modal-content .modal-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .search-modal-content .modal-body {
        padding: 1rem;
    }
    
    .search-form .form-control {
        font-size: 16px;
    }
    
    .search-results {
        max-height: 300px;
    }
    
    .search-result-item {
        padding: 0.75rem;
    }
    
    .search-result-content h6 {
        font-size: 0.95rem;
    }
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */

.newsletter-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
}

.newsletter-section h5 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form .input-group {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 0.75rem 1.25rem;
}

.newsletter-success,
.newsletter-error {
    padding: 0.75rem;
    border-radius: var(--radius);
    margin-top: 0.75rem;
    font-size: 0.875rem;
}

.newsletter-success {
    background: rgba(16, 185, 129, 0.2);
    color: #fff;
}

.newsletter-error {
    background: rgba(239, 68, 68, 0.2);
    color: #fff;
}

/* ==========================================
   LOADING STATES
   ========================================== */

.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading .btn-text {
    visibility: hidden;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: btnSpinner 0.75s linear infinite;
}

@keyframes btnSpinner {
    to {
        transform: rotate(360deg);
    }
}

.form-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: inherit;
}

/* ==========================================
   PAGINATION
   ========================================== */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    gap: 0.5rem;
}

.pagination .page-item .page-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 2px solid #e2e8f0;
    color: var(--secondary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination .page-item .page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    width: auto;
    padding: 0 1rem;
}


/* ==========================================
   INTRO WELL STYLES
   ========================================== */

.site-title {
    color: var(--primary);
    font-size: 18px;
    padding: 12px 22px;
    border: 1px solid #ffa524;
    width: fit-content;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}

/* Page Header Border */
.page-header {
    border-bottom: 1px solid #f59e0b;
}

/* Footer CTA Border */
.footer-cta {
    border-top: 1px solid #f59e0b;
}


/* ==========================================
   CONTACT FORM STYLES - PROFESSIONAL
   ========================================== */

.contact-section {
    background: #ffffff;
    padding: 60px 0;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #4a5568;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-form-wrapper h3 i {
    color: #f4b860;
    margin-right: 0.75rem;
}

/* Form Alert Messages */
.form-message,
.alert {
    border-radius: 8px;
    padding: 12px 16px;
    border-left: 4px solid;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease-out;
}

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

.alert-success {
    background-color: #ecfdf5;
    border-left-color: #059669;
    color: #065f46;
}

.alert-success i {
    color: #059669;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.alert-danger {
    background-color: #fef2f2;
    border-left-color: #dc2626;
    color: #7f1d1d;
}

.alert-danger i {
    color: #dc2626;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-label span {
    color: #dc2626;
}

.form-control {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #1a1a1a;
}

.form-control:focus {
    border-color: #4a5568;
    box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc2626;
}

.form-control:valid:not(:placeholder-shown) {
    border-color: #059669;
}

/* Message Textarea - Full Height */
.form-control-message {
    min-height: 200px;
    resize: vertical;
    font-family: inherit;
}

/* Form Text */
.form-text {
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.form-text.text-muted {
    color: #6b7280;
}

.form-text.text-danger {
    color: #dc2626;
    display: none;
}

.form-control:invalid:not(:placeholder-shown) ~ .form-text.text-danger {
    display: block;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 85, 104, 0.3);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Professional Contact Info Cards */
.contact-info-card-pro {
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #4a5568;
    transition: all 0.3s ease;
}

.contact-info-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contact-info-card-pro h5 {
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.contact-info-card-pro p {
    color: #4b5563;
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-card-pro p.text-secondary {
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.contact-info-card-pro a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-info-card-pro a:hover {
    color: #2d3748;
}

/* Contact Info Icon */
.contact-icon-pro {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f59e0b99, #f59e0b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon-pro i {
    color: #4a5568;
    font-size: 1.3rem;
}

/* Map Container */
.map-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.map-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.map-container h3 i {
    color: #f4b860;
    margin-right: 0.75rem;
}

/* Map Wrapper - Full Width */
.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Contact Section */
@media (max-width: 991.98px) {
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .map-container {
        padding: 30px;
    }
    
    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .form-control {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
    
    .form-control-message {
        min-height: 150px;
    }
    
    .submit-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .contact-info-card-pro {
        padding: 20px;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .map-container h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
}

/* Form Validation States */
.form-control.is-invalid {
    border-color: #dc2626;
}

.form-control.is-valid {
    border-color: #059669;
}

.was-validated .form-control:invalid {
    border-color: #dc2626;
}

.was-validated .form-control:valid {
    border-color: #059669;
}

/* Loading State */
.btn-loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 0.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* =========================================================
   RESPONSIVE + HORIZONTAL OVERFLOW FIXES (added by ChatGPT)
   Goal: prevent mobile pinch-zoom/side-scroll caused by overflow
   ========================================================= */

/* Safety: avoid accidental horizontal scroll from any stray element */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Media should never overflow */
img, video, svg, iframe {
  max-width: 100%;
  height: auto;
}

/* Prevent long links/words from pushing layout wider */
a, p, h1, h2, h3, h4, h5, h6, li, span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Cookie banner: buttons can overflow on very small screens (nowrap + flex) */
.cookie-consent-buttons {
  flex-wrap: wrap;
}
.cookie-consent-buttons .btn {
  white-space: normal; /* allow wrap on tiny screens */
}

/* Grids: min column widths can force overflow on small devices */
@media (max-width: 420px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* avoid minmax(280px) overflow with padding/gaps */
  }
}

/* Bootstrap-like containers/rows sometimes create overflow via negative margins */
@media (max-width: 1199.98px) {
    .container, .container-fluid, .row {
        max-width: 100%;
    }
}

/* If any section uses translate/absolute positioning, clamp width */
@media (max-width: 1199.98px) {
    .hero-section, .footer-main, .footer-cta, .main-nav, .top-bar {
        max-width: 100%;
    }
}

/* Extra-small: your logo height=100px can be okay, but ensure it doesn't force width issues */
@media (max-width: 575.98px) {
  .navbar-brand img {
    max-width: 75vw;   /* prevents logo from pushing layout */
    height: auto;      /* keep aspect ratio */
  }
}

/* Floating buttons: ensure they never create layout width */
.whatsapp-float, .phone-float {
  right: max(12px, env(safe-area-inset-right));
}



/* =========================================================
   BUTTON ACTIVE FIX (Jetzt anrufen - keep white + yellow text on tap)
   ========================================================= */

.btn.btn-white,
a.btn.btn-white {
  background-color: #fff !important;
  color: #ffc107 !important; /* yellow text */
  opacity: 1 !important;
}

.btn.btn-white:hover,
.btn.btn-white:active,
.btn.btn-white:focus,
.btn.btn-white:visited,
a.btn.btn-white:hover,
a.btn.btn-white:active,
a.btn.btn-white:focus,
a.btn.btn-white:visited {
  background-color: #fff !important;
  color: #ffc107 !important; /* yellow text */
  opacity: 1 !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Optional: remove mobile tap highlight */
a.btn.btn-white {
  -webkit-tap-highlight-color: transparent;
}

