/* MAVZER OTO KURTARMA - Modern Style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@400;600;700&display=swap');

:root {
    --primary: #004981;
    --primary-dark: #00335a;
    --primary-light: #0066cc;
    --accent: #ffc107;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border: #e5e5e5;
    --shadow: 0 4px 6px rgba(0, 33, 66, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 33, 66, 0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --container: 1200px;
    --transition: all 0.3s ease;
}

/* RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

/* UTILITIES & GRID SYSTEM (Mapping Old Classes) */
.Wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.fl-left {
    float: none !important;
}

/* Reset floats */
.fl-right {
    float: none !important;
}

/* Converting legacy float layout to Grid/Flex */
.row,
.content-10 {
    display: block;
}

/* HEADER */
#SiteTop {
    background: #002142;
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#TopContact {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

#TopContact i {
    margin-right: 8px;
    color: var(--accent);
}

#SiteHeader {
    background: rgba(0, 33, 66, 0.9);
    /* Dark Blue Transparent */
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 33, 66, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#SiteHeader .Wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

#SiteLogo img {
    height: 75px;
    /* Slightly larger */
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    /* Make logo pop on dark */
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 10px;
}

#SiteLogo img:hover {
    transform: scale(1.05);
}

/* Navigation */
#SiteNavigation ul {
    display: flex;
    gap: 15px;
}

#SiteNavigation a {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    /* White text */
    padding: 12px 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#SiteNavigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: width 0.3s ease;
    transform: skewX(-20deg);
}

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

#SiteNavigation a:hover::before {
    width: 120%;
    /* Cover full button on hover */
}

#SiteNavigation a::after {
    display: none;
}

/* Mobile Menu Button */
.MobileMenu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.MobileMenu::before {
    content: '\f0c9';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* HERO / SLIDER */
#Slider {
    position: relative;
    height: 600px;
    background: #002142;
    overflow: hidden;
}

.SlideItem {
    position: relative;
    height: 100%;
    display: none;
    /* JS will toggle this */
}

.SlideItem.active {
    display: block;
    animation: fade 1s;
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}

.SlideBackground {
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.SlideItem>img {
    display: none;
}

/* Hide raw img, use BG */

.TextContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 800px;
}

.SlideTexts .Title {
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 33, 66, 0.5);
    margin-bottom: 20px;
    color: var(--white);
}

.SlideTexts .SubTitle {
    font-size: 1.25rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-modern {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    box-shadow: var(--shadow-lg);
}

.btn-modern:hover {
    transform: translateY(-3px);
    background: #ffca2c;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

/* SERVICE CARDS - MODERN LIGHT THEME */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft, premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: height 0.4s ease;
    z-index: -1;
}

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

.service-card:hover::before {
    height: 100%;
    /* Fill background on hover */
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: rgba(0, 73, 129, 0.05);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.service-card:hover i {
    background: #ffffff;
    color: var(--accent);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #ffffff;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* GALLERY */
/* GALLERY */
/* Reset legacy columns in gallery to work with Grid */
.PortfolioPlugin .row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 50px 0;
}

.PortfolioPlugin .column-4 {
    width: 100%;
    margin: 0;
    padding: 0;
}

.GalleryItem {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 300px;
    box-shadow: var(--shadow);
}

.GalleryItem .thumbnail {
    height: 100%;
}

.GalleryItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.GalleryItem:hover img {
    transform: scale(1.1);
}

/* Caption styling (The <a> tag) */
.GalleryItem a {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 33, 66, 0.9), transparent);
    color: var(--white);
    padding: 20px;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    /* Make overlay cover full on hover relative to visual if needed, but here just bottom */
}

.GalleryItem:hover a {
    transform: translateY(0);
}

/* FOOTER */
/* FOOTER - HARMONIZED WITH HEADER */
/* FOOTER - HARMONIZED WITH HEADER */
/* FOOTER - ADVANCED GRID */
#Footer {
    background: #002142;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    margin-top: 80px;
    position: relative;
    border-top: 5px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: #002142;
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--accent);
    transition: margin-right 0.3s ease;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.Copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    font-size: 0.9rem;
    background: #00152a;
    color: rgba(255, 255, 255, 0.5);
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

#FooterEnd {
    background: #001830;
    /* Darker shade of #002142 */
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
}

/* UTILS - BUTTONS */
.UpButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: none;
    /* JS will show */
}


/* MODERN STICKY CONTACT BUTTONS */
.ContactStickButtons {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ContactStickButtons a {
    display: flex;
    align-items: center;
    padding: 8px 15px 8px 8px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    width: fit-content;
}

/* Icon Styling */
.ContactStickButtons a i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 12px;
}

/* Gradients */
.ContactStickButtons .CallNow {
    background: linear-gradient(135deg, #002142, #004e92);
    /* Navy Gradient */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ContactStickButtons .WhatsApp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    /* WhatsApp Gradient */
}

/* Hover Effects */
.ContactStickButtons a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ContactStickButtons a:hover i {
    background: #fff;
}

.ContactStickButtons .CallNow:hover i {
    color: #002142;
}

.ContactStickButtons .WhatsApp:hover i {
    color: #128C7E;
}

/* Pulse Animation for Phone */
@keyframes phonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 33, 66, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 33, 66, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 33, 66, 0);
    }
}

.ContactStickButtons .CallNow {
    animation: phonePulse 2s infinite;
}

/* Hide Text on Small Mobile? No, keep it for better UX, maybe smaller */
@media (max-width: 400px) {
    .ContactStickButtons a span {
        display: none;
    }

    .ContactStickButtons a {
        padding: 0;
        width: 50px;
        height: 50px;
        justify-content: center;
    }

    .ContactStickButtons a i {
        margin: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        font-size: 1.4rem;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    /* Hide Top Contact Bar to save space */
    #SiteTop {
        display: none;
    }

    #SiteHeader .Wrap {
        height: 70px;
    }

    #SiteLogo img {
        height: 50px; /* Slightly bigger logo for mobile visibility */
        padding: 5px;
    }

    .MobileMenu {
        display: block;
        font-size: 1.8rem;
        padding: 10px;
    }

    #SiteNavigation {
        position: fixed;
        top: 70px; /* Matches Header Height */
        left: 0;
        width: 100%;
        background: rgba(0, 33, 66, 0.98); /* Solid dark bg */
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        height: 0;
        overflow: hidden;
        transition: var(--transition);
        display: block !important;
        z-index: 999;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    #SiteNavigation.open {
        height: auto;
        padding: 20px 0;
        border-bottom: 3px solid var(--accent);
    }

    #SiteNavigation ul {
        flex-direction: column;
        padding: 0 20px;
        gap: 15px;
        text-align: center;
    }
    
    #SiteNavigation a {
        display: block;
        font-size: 1.1rem;
        padding: 10px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    #Slider {
        height: 100vh; /* Full screen height for impact */
        max-height: 600px;
        min-height: 400px;
    }

    .TextContainer {
        width: 95%; /* More width */
    }

    .SlideTexts .Title {
        font-size: 2.2rem; /* Readable but impactful */
        line-height: 1.2;
    }
    
    .SlideTexts .SubTitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .btn-modern {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Legacy Overrides */
.DividerPlugin,
.content-10 {
    width: 100%;
}

.bg-primary {
    background: var(--bg-light);
    color: var(--text);
    padding: 50px 0;
}

.bg-white {
    background: var(--white);
}

.pad-30 {
    padding: 30px;
}

.pad-50 {
    padding: 50px 0;
}

.mar-bottom-20 {
    margin-bottom: 20px;
}

.mar-bottom-30 {
    margin-bottom: 30px;
}

/* Contact Page Specifics */
.row {
    display: flex;
    flex-wrap: wrap;
}

.column-2 {
    width: 50%;
}

@media (max-width: 768px) {
    .column-2 {
        width: 100%;
    }
}

/* CONTACT PAGE */
.ContactRow {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.ContactIcon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.ContactDetail label {
    display: block;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.ContactDetail div {
    color: var(--text);
}

.FluidMap iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--radius);
}

/* COMMENTS / TESTIMONIALS */
#CommentsContainer {
    margin-top: 40px;
}

.CommentBox {
    background: var(--bg-light);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    border-left: 5px solid var(--accent);
}

.CommentDate {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
    display: block;
}

.CommentContent strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

/* SERVICE PAGE SPECIFIC */
.PagesPlugin .ContentBox {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

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

.PagesPlugin .ContentBox h3 {
    margin-bottom: 15px;
}

.PagesPlugin .ContentBox h3 a {
    color: var(--primary-dark);
}

/* PAGE TITLE & BREADCRUMB */
.PageTitle {
    background: var(--bg-light);
    padding: 60px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.PageTitle h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.Breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 0;
    margin: 0;
}

.Breadcrumb li {
    display: flex;
    align-items: center;
}

.Breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--accent);
}

/* ABOUT PAGE UTILS */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Card effect for text */
    border-left: 5px solid var(--accent);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
    font-weight: 700;
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    height: 500px;
    transform: rotate(2deg);
    /* Stylish tilt */
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: rotate(0);
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-box {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-box:hover i {
    transform: scale(1.2);
    color: var(--accent);
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    .about-text {
        padding: 30px;
    }

    .about-image img {
        height: 300px;
        transform: none;
    }
}

.Breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.Breadcrumb a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.Breadcrumb .active span {
    color: var(--text-light);
    font-weight: 400;
}

/* CONTACT PAGE STYLES */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info {
    padding: 50px;
    background: #ffffff;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-desc {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateX(10px);
    background: #fff;
    border-color: var(--border);
    box-shadow: var(--shadow);
}

.contact-card .icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-card .info-text h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-card .info-text p {
    color: var(--text);
    margin: 0;
    font-weight: 500;
}

.contact-card .info-text a {
    color: var(--text);
    transition: color 0.3s;
}

.contact-card .info-text a:hover {
    color: var(--accent);
}

.badge {
    display: inline-block;
    background: #28a745;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 5px;
}

.contact-map-wrapper {
    min-height: 500px;
    width: 100%;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper {
        min-height: 350px;
        order: -1;
        /* Map on top */
    }

    .contact-info {
        padding: 30px;
    }
}

/* PRELOADER STYLES */
#Preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #ffffff url("../photos/mavzerotokurtarma-logo.png") no-repeat center center;
    background-size: auto 50px;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
    opacity: 1;
    visibility: visible;
}

#Preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.Loading {
    overflow: hidden;
}