/* ============================================================
   DoorexCargo - Ana Stil Dosyası
   Lacivert · Beyaz · Açık Gri · Turuncu vurgu
   ============================================================ */

:root {
    --navy: #0b1f3a;
    --navy-mid: #14305a;
    --navy-soft: #1a3a6b;
    --white: #ffffff;
    --gray-50: #f7f9fc;
    --gray-100: #eef2f7;
    --gray-200: #dde3ec;
    --gray-500: #6b7a90;
    --gray-700: #3d4a5c;
    --accent: #e87722;
    --accent-hover: #d16618;
    --accent-soft: rgba(232, 119, 34, 0.12);
    --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
    --shadow-md: 0 8px 28px rgba(11, 31, 58, 0.1);
    --shadow-lg: 0 16px 48px rgba(11, 31, 58, 0.14);
    --radius: 12px;
    --radius-lg: 18px;
    --transition: 0.3s ease;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--navy-mid);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Header ---------- */
.site-header .navbar {
    background: var(--navy);
    padding: 0.85rem 0;
    box-shadow: var(--shadow-sm);
    z-index: 1030;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--white) !important;
}

.site-logo-img {
    display: block;
    max-height: 42px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.site-logo-img--footer {
    max-height: 48px;
    max-width: 220px;
}

.footer-logo-brand {
    display: inline-flex;
    align-items: center;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: var(--white);
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.15rem;
}

.brand-text {
    letter-spacing: -0.02em;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all var(--transition);
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
}

.btn-accent {
    background: var(--accent);
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition);
}

.btn-accent:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(232, 119, 34, 0.35);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    border-radius: 8px;
    background: transparent;
    transition: all var(--transition);
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* ---------- Hero Slider ---------- */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 31, 58, 0.88) 0%,
        rgba(11, 31, 58, 0.72) 50%,
        rgba(20, 48, 90, 0.78) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 780px;
    padding: 2rem 1.5rem;
}

.hero-content.hero-align-left {
    text-align: left;
    margin-right: auto;
    margin-left: 0;
    max-width: 680px;
}

.hero-content.hero-align-left .hero-desc,
.hero-content.hero-align-left p {
    margin-left: 0;
    margin-right: 0;
}

.hero-content.hero-align-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.85rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-content h1 strong,
.hero-content h1 b {
    color: var(--accent);
    font-weight: 800;
}

.hero-content .hero-desc,
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.hero-content .hero-desc p {
    margin-bottom: 0.5rem;
}

.hero-content .btn {
    padding: 0.75rem 1.85rem;
    font-size: 1rem;
    border-radius: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    opacity: 1;
    margin: 0 1.25rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--accent);
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.45);
}

.carousel-indicators .active {
    background: var(--accent);
}

/* Fallback slide gradients when no image */
.slide-fallback-1 { background: linear-gradient(135deg, #0b1f3a 0%, #1a3a6b 60%, #e87722 160%); }
.slide-fallback-2 { background: linear-gradient(120deg, #14305a 0%, #0b1f3a 70%, #2a5080 100%); }
.slide-fallback-3 { background: linear-gradient(160deg, #0b1f3a 0%, #1e4a7a 50%, #0b1f3a 100%); }

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header .eyebrow {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.section-header h2 {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    margin-bottom: 0.85rem;
}

.section-header p {
    color: var(--gray-500);
    margin: 0;
    font-size: 1.05rem;
}

/* ---------- Cards ---------- */
.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.45rem;
}

.about-card p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 16px;
    font-size: 1.65rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition);
}

.service-card-img:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card-img .card-img-wrap {
    height: 200px;
    overflow: hidden;
    background: var(--navy);
}

.service-card-img .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card-img:hover .card-img-wrap img {
    transform: scale(1.05);
}

.service-card-img .card-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--accent);
    font-size: 2.5rem;
}

.service-card-img .card-body {
    padding: 1.5rem;
}

.service-card-img h3 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.service-card-img p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 4rem 0 3.5rem;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    margin-bottom: 0.65rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1.05rem;
}

/* ---------- About page ---------- */
.feature-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-box .icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 12px;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--gray-500);
    margin: 0;
    font-size: 0.975rem;
}

.about-content {
    font-size: 1.075rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ---------- Contact ---------- */
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--accent);
    font-size: 1.15rem;
}

.contact-item span,
.contact-item a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.975rem;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.contact-form-wrap .form-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

.contact-form-wrap .form-control {
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    padding: 0.7rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form-wrap .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 3rem;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.alert-custom {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.25rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 4.5rem 0 0;
    margin-top: auto;
}

.site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--white);
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.55rem;
    font-size: 0.925rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.925rem;
}

.footer-contact i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--white);
    font-size: 1.05rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
}

.social-link .nsosyal {
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    background: url('../images/nsosyal.svg') center / contain no-repeat;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-note {
    color: rgba(255, 255, 255, 0.45);
}

.footer-regions {
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.regions-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-intro {
    text-align: center;
}

.services-intro-title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.services-intro p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.services-intro p:last-child {
    margin-bottom: 0;
}

.service-detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--gray-100);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--navy);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-body {
    color: var(--gray-500);
    line-height: 1.75;
}

.dropdown-menu-dark {
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.4rem;
}

.dropdown-menu-dark .dropdown-item {
    border-radius: 8px;
    font-size: 0.925rem;
    padding: 0.55rem 0.85rem;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1);
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.55);
    margin-left: 0.75rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-legal-link:hover {
    color: var(--accent);
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
    max-width: 720px;
    margin: 0 auto;
}

.cookie-consent-inner {
    position: relative;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-consent-text {
    flex: 1 1 280px;
    padding-right: 1.5rem;
}

.cookie-consent-text strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
}

.cookie-consent-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-close {
    position: absolute;
    top: 0.45rem;
    right: 0.65rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
}

.cookie-close:hover {
    color: var(--white);
}

.cookie-consent.is-hiding {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Dil seçici */
.lang-switcher {
    min-width: 72px;
}

.lang-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
    cursor: pointer;
}

.lang-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.lang-select option {
    color: #0b1f3a;
    background: #fff;
}

/* Google Translate gizle */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate > iframe.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-logo-link,
.goog-te-gadget {
    display: none !important;
}

font {
    vertical-align: inherit !important;
}

/* Sağ alt hızlı iletişim */
.float-actions {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-end;
}

.float-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 8px 24px rgba(11, 31, 58, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none !important;
}

.float-btn i {
    font-size: 1.15rem;
}

.float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11, 31, 58, 0.28);
    color: #fff !important;
}

.float-btn-call {
    background: var(--navy);
}

.float-btn-call:hover {
    background: var(--navy-mid);
}

.float-btn-wa {
    background: #25d366;
}

.float-btn-wa:hover {
    background: #1ebe57;
}

@media (max-width: 575.98px) {
    .hero-content.hero-align-left {
        text-align: center;
    }

    .hero-content.hero-align-left .hero-desc,
    .hero-content.hero-align-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-consent-actions .btn {
        flex: 1;
    }

    .float-actions {
        right: 0.75rem;
        bottom: 0.85rem;
    }

    .float-btn span {
        display: none;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ---------- Animations ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .hero-slider {
        height: 550px;
    }

    .section {
        padding: 3.5rem 0;
    }

    .navbar-collapse {
        background: var(--navy);
        padding: 1rem 0;
        margin-top: 0.5rem;
    }

    .navbar-nav .btn-accent {
        margin-top: 0.5rem;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-slider {
        height: 520px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }

    .about-card,
    .contact-form-wrap,
    .contact-info-card {
        padding: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
