/* ========================================
   Custom CSS for Hızır Cenaze
   Modern, Responsive, Red & White Theme
   ======================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors - Red & White Theme */
    --primary-red: #c41e3a;
    --primary-dark: #8b1428;
    --primary-light: #dc3545;
    --secondary-red: #e63946;
    --accent-gold: #d4af37;
    
    --dark-gray: #1a1a1a;
    --medium-gray: #4a4a4a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    
    --text-primary: #2d2d2d;
    --text-secondary: #6c757d;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #c41e3a 0%, #8b1428 100%);
    --gradient-hero: linear-gradient(135deg, rgba(196, 30, 58, 0.95) 0%, rgba(139, 20, 40, 0.95) 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    
    /* Spacing */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-gray);
}

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

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: var(--transition-fast);
}

.top-info-item:hover {
    color: var(--accent-gold);
}

.top-info-item i {
    font-size: 1rem;
}

.language-selector {
    display: flex;
    gap: 6px;
}

.lang-btn {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ===== NAVIGATION ===== */
.navbar {
    padding: 0;
    background: var(--white) !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-red);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== HERO SECTION - Modern Split Design ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.03) 0%, rgba(139, 20, 40, 0.05) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

/* Left Side - Content */
.hero-content {
    padding: 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 20, 40, 0.15));
    color: var(--primary-red);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.hero-title-new {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 550px;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-new {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.btn-hero-new i {
    font-size: 2rem;
}

.btn-hero-new small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.btn-hero-new strong {
    display: block;
    font-size: 1.05rem;
}

.btn-primary-new {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-whatsapp-new {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp-new:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

/* Feature Items */
.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-icon-small {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

/* Right Side - Visual */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-icon {
    font-size: 15rem;
    color: rgba(196, 30, 58, 0.08);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
    animation: floatCard 4s ease-in-out infinite;
    border: 1px solid rgba(196, 30, 58, 0.1);
}

.floating-card .card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.floating-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--dark-gray);
}

.floating-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.card-1 {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Decorative Circles */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    border: 2px solid var(--primary-red);
    top: 10%;
    left: 10%;
}

.circle-2 {
    width: 250px;
    height: 250px;
    border: 2px dashed var(--primary-light);
    bottom: 20%;
    left: 30%;
    animation-duration: 15s;
    animation-direction: reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(139, 20, 40, 0.15));
    top: 60%;
    right: 40%;
    animation-duration: 10s;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Indicator */
.scroll-indicator-new {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        opacity: 0;
        height: 0;
    }
    50% {
        opacity: 1;
        height: 40px;
    }
    100% {
        opacity: 0;
        height: 40px;
    }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--light-gray);
}

.trust-badge {
    padding: 2rem 1rem;
    text-align: center;
    transition: var(--transition-normal);
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== SECTION HEADERS ===== */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-red));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid #f0f0f0;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary-red);
    font-size: 1rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-badge i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.about-badge strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: 700;
}

.about-badge span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.about-feature:hover {
    box-shadow: var(--shadow-md);
}

.about-feature i {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition-normal);
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin: 2rem 0 1rem;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.process-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--primary-red);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.1);
}

/* Map Container */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

#map {
    width: 100%;
    height: 100%;
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(196, 30, 58, 0.1);
}

.leaflet-popup-content {
    margin: 0 !important;
}

.leaflet-popup-tip {
    background: white;
}

.custom-map-marker {
    background: transparent !important;
    border: none !important;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes markerBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Marker hover effect */
.leaflet-marker-icon:hover {
    z-index: 1000 !important;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.accordion-item {
    border: 1px solid rgba(196, 30, 58, 0.1);
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.accordion-button {
    background: var(--white);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: var(--border-radius) !important;
    transition: all var(--transition-normal);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.25);
    border-color: var(--primary-red);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232d2d2d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform var(--transition-normal);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-button i {
    color: var(--primary-red);
    transition: color var(--transition-normal);
}

.accordion-button:not(.collapsed) i {
    color: var(--white);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-gray);
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.accordion-collapse {
    border: none;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .accordion-body {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .accordion-button i {
        font-size: 0.9rem;
    }
}

/* ===== OTHER LOCATIONS SECTION ===== */
.locations-section {
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.locations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border: 2px solid rgba(196, 30, 58, 0.1);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    min-height: 100px;
}

.location-card:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.location-card i {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}

.location-card:hover i {
    color: var(--white);
}

.location-card span {
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: color var(--transition-normal);
}

.locations-section .btn-danger {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.locations-section .btn-danger:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

/* Locations Responsive */
@media (max-width: 768px) {
    .location-card {
        padding: 1rem 0.75rem;
        min-height: 85px;
    }
    
    .location-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .location-card span {
        font-size: 0.9rem;
    }
    
    .locations-section .btn-danger {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gray);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
}

.footer-brand i {
    color: var(--primary-light);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    /* Hero Responsive */
    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .btn-hero-new {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: var(--border-radius-sm);
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 767px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .col-md-8,
    .top-bar .col-md-4 {
        text-align: center;
    }
    
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-hero-new {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .service-card,
    .process-card {
        margin-bottom: 2rem;
    }
    
    .about-badge {
        position: static;
        margin-top: 2rem;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .hero-title-new {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-icon,
    .process-icon {
        font-size: 2.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}

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

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

/* ===== UTILITY CLASSES ===== */
.text-primary-red {
    color: var(--primary-red) !important;
}

.bg-primary-red {
    background: var(--primary-red) !important;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}
