/* General Styles */
:root {
    --primary-color: #d63031;
    /* Kırmızı - logo rengi */
    --secondary-color: #c0392b;
    /* Koyu kırmızı */
    --accent-color: #2d3436;
    /* Koyu gri - daha profesyonel bir ton */
    --accent-secondary: #636e72;
    /* Orta gri */
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
    --gray-color: #636e72;
    --light-gray-color: #dfe6e9;
    --bs-primary: #d63031;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-color: #f9f9f9;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.logo-text {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1.1;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.logo-text .aksa-logo-container {
    margin-left: 12px;
    height: 38px;
    display: flex;
    align-items: center;
}

.logo-text .aksa-logo {
    display: flex;
    flex-direction: column;
    width: 120px;
    height: 100%;
}

.aksa-logo {
    position: relative;
    border: none;
}

.aksa-logo-text {
    background-color: #000;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    padding: 2px 5px;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    display: flex;
    justify-content: center;
}

.aksa-logo-subtext {
    background-color: var(--accent-secondary);
    color: black;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    padding: 3px 5px;
    text-align: center;
    letter-spacing: 1px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    color: var(--dark-color) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

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

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

/* Hero Slider */
.hero-slider {
    position: relative;
    background: #000;
    height: 85vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transform: scale(1);
    transition: transform 6s ease-in-out;
    z-index: -1;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 86%));
}

.swiper-slide-active .background-image {
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content .subtitle {
    color: var(--bs-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.swiper-slide-active .hero-content .subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.swiper-slide-active .hero-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.swiper-slide-active .hero-content p {
    opacity: 1;
    transform: translateY(0);
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

.swiper-slide-active .hero-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    background: var(--bs-primary);
}

.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after {
    font-size: 1.5rem;
}

.hero-slider .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--bs-primary);
    width: 40px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

/* Features Section */
.features-section {
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.feature-box {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    border: none;
    border-bottom: 3px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-color);
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background-color: rgba(214, 48, 49, 0.1);
    font-size: 24px;
    flex-shrink: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-large {
    background-color: var(--primary-color);
    color: white;
}

/* Section Titles */
.section-title {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.section-subtitle {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    background-color: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.card-img-top {
    transition: all 0.5s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(214, 48, 49, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-card:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: rgba(214, 48, 49, 0.1);
    margin: 0 auto;
    font-size: 30px;
    transform: translateY(0);
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background-color: #fff;
}

.brands-swiper {
    padding: 20px 0;
}

.brand-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-item {
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(214, 48, 49, 0.1);
}

.brand-logo {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0);
    opacity: 1;
}

/* Feature Items */
.feature-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.feature-item:hover {
    background-color: white;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background-color: rgba(214, 48, 49, 0.1);
    font-size: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Cards */
.contact-section {
    position: relative;
    background-color: #f5f6fa;
}

.contact-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fff;
    border: none;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: rgba(214, 48, 49, 0.1);
    margin: 0 auto;
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.footer .logo-text {
    color: white;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.footer .aksa-logo-container {
    margin-left: 10px;
    height: 35px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
    display: inline-block;
}

.footer-links a:hover {
    padding-left: 8px;
    color: var(--primary-color) !important;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-right: 10px;
    color: white;
}

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

/* Buttons */
.btn {
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 48, 49, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214, 48, 49, 0.3);
}

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

.btn-light:hover,
.btn-light:focus {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(214, 48, 49, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-5px);
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

.animate__fadeInUp {
    animation-duration: 0.8s;
}

/* Responsive */
@media (max-width: 991.98px) {

    .hero-slider,
    .hero-slide {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .features-section {
        margin-top: 0;
    }

    .section-title:after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 10px 0;
    }

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

    .nav-link {
        margin: 5px 0;
    }

    .hero-slider,
    .hero-slide {
        height: 60vh;
    }

    .hero-content {
        text-align: left;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title,
    .section-subtitle {
        text-align: center;
    }

    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-card,
    .service-card {
        margin-bottom: 20px;
    }

    .feature-box {
        margin-bottom: 15px;
    }

    .btn {
        padding: 10px 25px;
    }
}

.phone-number {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-left: 15px;
    border: 1px solid var(--primary-color);
    padding: 6px 10px;
    border-radius: 8px;
    background-color: rgba(214, 48, 49, 0.05);
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.phone-number:hover {
    background-color: var(--primary-color);
    color: white;
}

.footer-aksa-logo .aksa-logo-subtext {
    color: black;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.about-image {
    border-radius: 1rem;
    overflow: hidden;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--bs-primary);
    color: white;
    padding: 20px;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    line-height: 1.2;
}

.about-feature {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.about-feature i {
    font-size: 2rem;
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: var(--bs-primary);
}

.mission-list,
.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li,
.vision-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--bs-primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin: 0;
}

.team-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card .card {
    transition: all 0.3s ease;
}

.team-card .card:hover {
    transform: translateY(-5px);
}

.cta-section {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .experience-badge {
        right: 0;
        bottom: 20px;
        padding: 15px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .stat-item {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .team-card {
        margin-bottom: 2rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-info-card .card {
    transition: all 0.3s ease;
}

.contact-info-card .card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--bs-primary);
}

.contact-link {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--bs-primary);
    opacity: 0.8;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-floating {
    margin-bottom: 1rem;
}

.form-control,
.form-select {
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    height: calc(3.5rem + 2px);
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

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

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-check-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.map-wrapper {
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 991.98px) {
    .contact-info-card {
        margin-bottom: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}