/* ============================================
   INDEX.PHP - MODERN MINIMALIST HERO
   Kırmızı Tema: #8B0000, #A52A2A
============================================ */

/* MODERN MINIMALIST HERO SECTION */
.modern-hero-section {
    position: relative !important;
    height: 100vh !important;
    min-height: 800px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

/* Background Image/Video */
.hero-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    animation: slowZoom 20s ease-in-out infinite alternate !important;
}

/* Overlay */
.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.92), rgba(165, 42, 42, 0.85)) !important;
    z-index: 1 !important;
}

/* Container */
.hero-container {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 1200px !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
}

/* Content Wrapper */
.hero-content-wrapper {
    text-align: center !important;
    animation: fadeInUp 1.5s ease !important;
}

/* Main Title */
.hero-main-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 90px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    letter-spacing: 4px !important;
    margin-bottom: 30px !important;
    text-shadow: 0 15px 50px rgba(0, 0, 0, 0.8) !important;
    animation: titleAnimation 1.5s ease !important;
}

/* Subtitle */
.hero-subtitle {
    font-family: 'Poppins', sans-serif !important;
    font-size: 24px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    letter-spacing: 2px !important;
    margin-bottom: 50px !important;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
    animation: fadeInUp 1.5s ease 0.3s both !important;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 80px !important;
    animation: fadeInUp 1.5s ease 0.6s both !important;
}

.hero-btn-primary,
.hero-btn-secondary {
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    padding: 20px 50px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.hero-btn-primary {
    background: white !important;
    color: #8B0000 !important;
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3) !important;
}

.hero-btn-primary:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4) !important;
    color: #8B0000 !important;
    text-decoration: none !important;
}

.hero-btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 3px solid white !important;
}

.hero-btn-secondary:hover {
    background: white !important;
    color: #8B0000 !important;
    transform: translateY(-5px) scale(1.05) !important;
    text-decoration: none !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute !important;
    bottom: 50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    animation: fadeInUp 2s ease 1s both !important;
}

.scroll-indicator span {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    display: block !important;
    margin-bottom: 15px !important;
}

.scroll-arrow {
    width: 40px !important;
    height: 40px !important;
    margin: 0 auto !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: bounce 2s infinite !important;
}

.scroll-arrow i {
    color: white !important;
    font-size: 20px !important;
}

/* Decorative Elements */
.hero-decoration {
    position: absolute !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent) !important;
    animation: float 15s ease-in-out infinite !important;
    z-index: 1 !important;
}

.hero-decoration-1 {
    width: 500px !important;
    height: 500px !important;
    top: -200px !important;
    left: -200px !important;
}

.hero-decoration-2 {
    width: 400px !important;
    height: 400px !important;
    bottom: -150px !important;
    right: -150px !important;
    animation-delay: 2s !important;
}

/* Animations */
@keyframes slowZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes titleAnimation {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ÖNE ÇIKAN ÜRÜNLER - YENİ TASARIM */
.featured-section {
    padding: 120px 0 !important;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8) !important;
}

/* ============================================
   FEATURES / NEDEN BİZ SECTION
============================================ */
.features-section {
    padding: 100px 0 !important;
    background: white !important;
}

.feature-card {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid rgba(139, 0, 0, 0.1) !important;
    height: 100% !important;
}

.feature-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 60px rgba(139, 0, 0, 0.15) !important;
    border-color: rgba(139, 0, 0, 0.3) !important;
}

.feature-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 25px !important;
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3) !important;
    transition: all 0.4s ease !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(360deg) !important;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.4) !important;
}

.feature-icon i {
    font-size: 36px !important;
    color: white !important;
}

.feature-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 15px !important;
    transition: color 0.3s ease !important;
}

.feature-card:hover .feature-title {
    color: #8B0000 !important;
}

.feature-description {
    font-family: 'Roboto', sans-serif !important;
    font-size: 15px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.section-title-modern {
    font-family: 'Poppins', sans-serif !important;
    font-size: 52px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    letter-spacing: 1px !important;
}

.section-subtitle-modern {
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #666 !important;
    text-align: center !important;
    margin-bottom: 70px !important;
}

.featured-product-card {
    background: #ffffff !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin: 20px !important;
    position: relative !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.featured-product-card:hover {
    transform: translateY(-20px) scale(1.03) !important;
    box-shadow: 0 25px 70px rgba(139, 0, 0, 0.25) !important;
}

.featured-product-card img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    transition: transform 0.7s ease !important;
    display: block !important;
}

.featured-product-card:hover img {
    transform: scale(1.2) rotate(2deg) !important;
}

.featured-product-info {
    padding: 30px !important;
    text-align: center !important;
    background: white !important;
}

.featured-product-name {
    font-family: 'Poppins', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 15px !important;
    transition: color 0.3s ease !important;
}

.featured-product-card:hover .featured-product-name {
    color: #8B0000 !important;
}

.featured-product-price {
    font-family: 'Poppins', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin: 0 !important;
}

.featured-badge {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    z-index: 10 !important;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* HAKKIMIZDA SECTION - MODERN */
.about-section {
    padding: 120px 0 !important;
    background: #ffffff !important;
}

.about-image {
    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2) !important;
    height: 550px !important;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.5s ease !important;
}

.about-image:hover {
    transform: scale(1.02) !important;
}

.about-content {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.04), rgba(165, 42, 42, 0.04)) !important;
    padding: 60px !important;
    border-radius: 30px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border: 2px solid rgba(139, 0, 0, 0.1) !important;
}

.about-content .subheading {
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #8B0000 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 25px !important;
    display: block !important;
}

.about-content p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.9 !important;
    color: #555 !important;
    margin-bottom: 35px !important;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    color: white !important;
    padding: 16px 40px !important;
    border-radius: 50px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4) !important;
    transition: all 0.4s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.btn-primary-modern:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5) !important;
    color: white !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #A52A2A, #8B0000) !important;
}

/* MASA AYIRT SECTION - PREMIUM */
.reservation-section {
    padding: 120px 0 !important;
    background: linear-gradient(to bottom, #f8f8f8, #ffffff) !important;
}

.reservation-form-wrapper {
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    padding: 60px !important;
    border-radius: 30px !important;
    box-shadow: 0 25px 80px rgba(139, 0, 0, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
}

.reservation-form-wrapper::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.reservation-form-wrapper h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 35px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.reservation-form-wrapper .form-control {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid transparent !important;
    border-radius: 15px !important;
    padding: 16px 22px !important;
    font-size: 15px !important;
    font-family: 'Roboto', sans-serif !important;
    transition: all 0.3s ease !important;
    color: #333 !important;
}

.reservation-form-wrapper .form-control:focus {
    background: white !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: white !important;
    outline: none !important;
}

.reservation-form-wrapper .form-control::placeholder {
    color: #999 !important;
}

.reservation-content {
    background: white !important;
    padding: 60px !important;
    border-radius: 30px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border: 2px solid rgba(139, 0, 0, 0.1) !important;
}

.btn-white-modern {
    background: white !important;
    color: #8B0000 !important;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.4s ease !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
}

.btn-white-modern:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35) !important;
    background: #f5f5f5 !important;
    color: #8B0000 !important;
}

/* SLOGAN SECTION - PARALLAX */
.slogan-section {
    position: relative !important;
    padding: 180px 0 !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

.slogan-section .overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95), rgba(165, 42, 42, 0.9)) !important;
    z-index: 1 !important;
}

.slogan-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.slogan-section span {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    display: block !important;
    margin-bottom: 20px !important;
}

.slogan-section h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    color: white !important;
    margin-top: 20px !important;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.6) !important;
    line-height: 1.3 !important;
}

/* CTA SECTION - BOLD */
.cta-section {
    padding: 120px 0 !important;
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-section::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    left: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%) !important;
    animation: rotate 20s linear infinite !important;
}

.cta-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 40px !important;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.3 !important;
}

.btn-outline-modern {
    background: transparent !important;
    color: white !important;
    padding: 18px 50px !important;
    border: 3px solid white !important;
    border-radius: 50px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    transition: all 0.4s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.btn-outline-modern:hover {
    background: white !important;
    color: #8B0000 !important;
    transform: scale(1.08) !important;
    text-decoration: none !important;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3) !important;
}

/* LOADER */
#ftco-loader {
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
}

#ftco-loader .path {
    stroke: #ffffff !important;
}

/* MENU BUTTON */
#menubuton {
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    box-shadow: 0 5px 25px rgba(139, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
}

#menubuton:hover {
    background: linear-gradient(135deg, #A52A2A, #8B0000) !important;
    transform: scale(1.15) rotate(360deg) !important;
}

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

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

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .modern-hero-section {
        min-height: 650px !important;
    }

    .hero-main-title {
        font-size: 42px !important;
        letter-spacing: 2px !important;
        margin-bottom: 20px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        margin-bottom: 35px !important;
    }

    .hero-cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 50px !important;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100% !important;
        max-width: 300px !important;
        padding: 16px 30px !important;
        font-size: 15px !important;
        justify-content: center !important;
    }

    .scroll-indicator {
        bottom: 30px !important;
    }

    .scroll-indicator span {
        font-size: 11px !important;
    }

    .hero-decoration-1,
    .hero-decoration-2 {
        width: 250px !important;
        height: 250px !important;
    }

    .section-title-modern {
        font-size: 36px !important;
    }

    .section-subtitle-modern {
        font-size: 16px !important;
        margin-bottom: 40px !important;
    }

    .featured-product-card {
        margin: 10px 0 !important;
    }

    .featured-product-card img {
        height: 220px !important;
    }

    .about-section {
        padding: 80px 0 !important;
    }

    .about-image {
        height: 350px !important;
        margin-bottom: 30px !important;
    }

    .about-content {
        padding: 35px !important;
    }

    .reservation-section {
        padding: 80px 0 !important;
    }

    .reservation-form-wrapper,
    .reservation-content {
        padding: 35px !important;
    }

    .slogan-section {
        padding: 100px 0 !important;
    }

    .slogan-section h2 {
        font-size: 32px !important;
    }

    .cta-section {
        padding: 80px 0 !important;
    }

    .cta-section h2 {
        font-size: 32px !important;
    }

    .btn-outline-modern {
        padding: 15px 35px !important;
        font-size: 15px !important;
    }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-main-title {
        font-size: 64px !important;
    }

    .hero-subtitle {
        font-size: 20px !important;
    }

    .section-title-modern {
        font-size: 42px !important;
    }
}

/* LARGE SCREENS */
@media (min-width: 1600px) {
    .hero-main-title {
        font-size: 110px !important;
    }

    .hero-subtitle {
        font-size: 28px !important;
    }
}

/* ============================================
   İLETİŞİM & HARITA SECTION
============================================ */
.contact-map-section {
    position: relative !important;
    background: white !important;
}

.contact-info-wrapper {
    padding: 100px 60px !important;
    background: linear-gradient(135deg, #8B0000, #A52A2A) !important;
    height: 100% !important;
    min-height: 600px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact-info-wrapper::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -50% !important;
    width: 200% !important;
    height: 200% !important;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%) !important;
    pointer-events: none !important;
}

.contact-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    color: white !important;
    margin-bottom: 15px !important;
    position: relative !important;
    z-index: 2 !important;
}

.contact-subtitle {
    font-family: 'Roboto', sans-serif !important;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 50px !important;
    position: relative !important;
    z-index: 2 !important;
}

.contact-items {
    position: relative !important;
    z-index: 2 !important;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 25px !important;
    margin-bottom: 40px !important;
    padding: 30px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.4s ease !important;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(10px) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.contact-icon {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    background: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
}

.contact-icon i {
    font-size: 26px !important;
    color: #8B0000 !important;
}

.contact-details h4 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.contact-details p {
    font-family: 'Roboto', sans-serif !important;
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.map-wrapper {
    width: 100% !important;
    height: 100% !important;
    min-height: 600px !important;
    position: relative !important;
}

.map-wrapper iframe {
    filter: grayscale(0%) !important;
    transition: filter 0.4s ease !important;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) !important;
}

/* Responsive - Contact Section */
@media (max-width: 991px) {
    .contact-info-wrapper {
        padding: 60px 40px !important;
        min-height: auto !important;
    }

    .contact-title {
        font-size: 36px !important;
    }

    .contact-subtitle {
        font-size: 16px !important;
        margin-bottom: 40px !important;
    }

    .contact-item {
        padding: 25px !important;
        margin-bottom: 25px !important;
    }

    .map-wrapper {
        min-height: 400px !important;
    }
}

@media (max-width: 768px) {
    .contact-info-wrapper {
        padding: 50px 30px !important;
    }

    .contact-title {
        font-size: 32px !important;
    }

    .contact-item {
        gap: 20px !important;
        padding: 20px !important;
    }

    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }

    .contact-icon i {
        font-size: 22px !important;
    }

    .contact-details h4 {
        font-size: 18px !important;
    }

    .contact-details p {
        font-size: 15px !important;
    }
}
