/* 
 * İnşaat Firması Premium Tema - Light Version (Suzer Plaza Inspired)
 * Framework: Bootstrap 5 compatible
 */

:root {
    /* Colors - Light Theme */
    --bg-body: #ffffff;
    --bg-light: #f8f9fa;
    --primary-color: #000000;
    --accent-red: #AD172B;
    /* Suzer Red */
    --accent-red-dark: #680613;
    --bg-light: #ffffff;
    --bg-footer: #EBECF0;
    --text-dark: #181818;
    --text-muted: #666666;
    --font-heading: 'Roboto Condensed', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* Reset & Base */
body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    margin: 0;
    padding-top: 130px;
    /* Space for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-red);
}

/* Navbar Custom */
.navbar-custom {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: background-color 0.3s ease;
    height: auto;
    min-height: 120px;
}

.navbar-header {
    background: #fff;
    position: relative;
    z-index: 1001;
}

.navbar-brand img {
    height: 50px;
    /* Adjust based on actual logo */
    width: auto;
}

/* Logo Brand - Suzer Plaza Style */
.logo-brand {
    font-family: "Georgia", "Times New Roman", serif;
    letter-spacing: 4px;
    background-color: transparent;
    text-decoration: none;
    color: #AD172B;
    line-height: 1;
    transition: all 0.6s ease-in-out;
    display: inline-block;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.logo-brand:hover {
    color: #8a1222;
    text-decoration: none;
}

.navbar-nav-custom .nav-link {
    color: #333 !important;
    font-family: var(--font-body);
    /* Serif font in reference, but using Roboto per previous */
    font-weight: 500;
    /* Bold/Serif look */
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 12px;
    transition: color 0.3s;
}

.navbar-nav-custom .nav-link:hover,
.navbar-nav-custom .nav-link:focus {
    color: var(--accent-red) !important;
}

/* Dropdown Menu Styles */
.navbar-nav-custom .dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 220px;
    margin-top: 0;
    border-top: 3px solid var(--accent-red);
}

.navbar-nav-custom .dropdown-item {
    padding: 12px 20px;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
}

.navbar-nav-custom .dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--accent-red);
    padding-left: 25px;
}

.navbar-nav-custom .dropdown-item i {
    color: var(--accent-red);
    width: 20px;
}

.navbar-nav-custom .dropdown-toggle::after {
    margin-left: 5px;
    font-size: 10px;
}

/* Split Hero with User's Legacy HTML Structure */
#intro {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 0px;
    display: flex;
    /* Flexbox for smooth width animation */
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

.slide-item {
    /* Base State */
    width: 50%;
    /* Fallback */
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0;

    /* Transitions */
    transition: width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-size 1s ease;

    /* Ensure styles override Bootstrap/Inline */
    flex: 0 0 auto;
    /* Don't grow/shrink automatically */
    /* Note: Inline style width:50% exists on HTML. 
       We will override it on hover with !important. */
}

/* Parent Hover Effect: Shrink *both* (or non-hovered one) */
#intro:hover .slide-item {
    width: 40% !important;
}

/* Specific Hover Effect: Expand the hovered one */
#intro .slide-item:hover {
    width: 60% !important;
    background-size: 110% auto !important;
    /* Zoom effect */
}

/* The Red Box (Content) */
.slide-item .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(173, 23, 43, 0.85);
    /* #AD172B slightly transparent */
    padding: 25px 30px;
    /* Much smaller padding */
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth 'soft' transition */
    min-width: 180px;
    /* Reduced from 250px */
    max-width: 220px;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

/* Positioning - Align to the CENTER SEAM */
.slide-item.left .text {
    right: 0;
    /* Touch the right edge of left panel */
    left: auto;
}

.slide-item.right .text {
    left: 0;
    /* Touch the left edge of right panel */
    right: auto;
}

/* Text Box Hover State */
.slide-item:hover .text {
    background-color: rgba(173, 23, 43, 1);
    /* Solid on hover */
    padding: 35px 40px;
    /* Subtle expansion */
    min-width: 200px;
}

/* Links */
.slide-item .text a {
    display: block;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    /* Reduced from 42px */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: margin 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slide-item .text .hero-title {
    display: block;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: margin 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slide-item:hover .text a,
.slide-item:hover .text .hero-title {
    margin-bottom: 10px;
}

/* Paragraph (Hidden by default) */
.slide-item .text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    /* Slightly smaller */
    line-height: 1.4;
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.slide-item:hover .text p {
    opacity: 1;
    max-height: 80px;
    transform: translateY(0);
    display: block;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Promote Section (White Background) */
.promote-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.promote-intro {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 50px;
    font-family: 'Georgia', serif;
    font-style: italic;
    font-weight: 400;
}

.promote-card {
    background: #fff;
    border: none;
    border-radius: 0;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.promote-card:hover {
    box-shadow: 0 15px 40px rgba(173, 23, 43, 0.15);
    transform: translateY(-8px);
}

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

.promote-card:hover .promote-img {
    transform: scale(1.05);
}

.promote-body {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
}

.promote-title {
    font-size: 1rem;
    color: #AD172B;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.promote-card .text-muted {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Jumbotron / Location Section */
.location-section {
    background-image: url('https://images.unsplash.com/photo-1449157291145-7efd050a4d0e?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    position: relative;
    text-align: center;
    color: #fff;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Dark overlay for text readability */
}

.location-content {
    position: relative;
    z-index: 2;
}

.location-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.location-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.location-item {
    text-align: center;
    color: #fff;
}

.location-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.location-item:hover .location-icon-wrapper {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: #fff;
}

.location-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.location-detail {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Footer (Dark) */
.footer {
    background-color: #111;
    color: #999;
    padding: 80px 0 40px;
    text-align: center;
    border-top: 5px solid var(--accent-gold);
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    /* Make logo white if it's not */
}

.footer-info {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #bbb;
}

.footer-info a {
    color: #fff;
    font-weight: 700;
}

.footer-info span {
    color: var(--accent-gold);
    font-weight: 700;
    margin: 0 5px;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
    margin: 0 15px;
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 40px;
    font-size: 13px;
    color: #555;
}

/* Mobile */
@media (max-width: 992px) {
    .navbar-custom {
        background-color: #fff;
        padding: 10px 0;
        min-height: 80px;
    }

    .navbar-header {
        padding: 10px 15px;
    }

    .navbar-toggler {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        border: none;
        padding: 8px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .logo-brand {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .navbar-brand,
    .nav-link {
        color: var(--text-main) !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .location-icons {
        gap: 30px;
    }
}

/* ============================
   Inner Pages
   ============================ */

/* Page Header */
.page-header {
    position: relative;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/inner-bg.jpg');
    /* Need a default or generic image path */
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-gold);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item.active {
    color: var(--accent-gold);
}

/* Page Content */
.page-content {
    padding-bottom: 80px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin-top: 10px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.content-text strong {
    color: var(--text-dark);
}

/* ============================
   Haberler Page Styles
   ============================ */

/* Sub Menu Navigation */
.sub-menu-section {
    background-color: #EBECF0;
    padding: 0;
    margin-top: 0;
    width: 100%;
}

.sub-menu-nav {
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    line-height: 30px;
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: block;
    float: left;
    text-align: center;
    width: 100%;
}

.sub-menu-nav::after {
    content: '';
    display: table;
    clear: both;
}

.sub-menu-nav li {
    display: inline-block;
    margin: 0 15px;
}

.sub-menu-nav li a {
    color: #333;
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    transition: all 0.4s ease-in-out;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-menu-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #AD172B;
    transition: width 0.4s ease-in-out;
}

.sub-menu-nav li a:hover {
    color: #AD172B;
}

.sub-menu-nav li a:hover::after {
    width: 100%;
}

.sub-menu-nav li a i {
    font-size: 16px;
    color: #666;
    transition: transform 0.3s ease;
}

.sub-menu-nav li a:hover i {
    transform: scale(1.2);
    color: #AD172B;
}

/* Fixed Sub Menu */
.sub-menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.sub-menu-fixed.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Contact Page Specific Styles */
.jumbotron {
    font-family: Raleway, sans-serif;
}

.first-section {
    padding: 0;
}

/* Sub-Menu Bar - Suzer Plaza Exact Match */
.sub-menu {
    background-color: #EBECF0;
    border-bottom: none;
    margin-bottom: 0;
    padding: 15px 0;
}

.sub-menu.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sub-menu.fixed.visible {
    opacity: 1;
    visibility: visible;
}

/* Sub Menu Navigation List */
.sub-menu-nav-custom {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    width: 100%;
}

.sub-menu-nav-custom li {
    display: inline-block;
    margin: 0 30px;
}

.sub-menu-nav-custom li a {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
    transition: all 0.3s;
    font-family: "Ubuntu", sans-serif;
}

.sub-menu-nav-custom li a:hover {
    color: #AD172B;
}

/* Sub Menu Icons - Suzer Plaza Style (Exact Match) */
.icon {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 12px;
    transition: all 0.3s ease;
}

/* Phone Icon (outline style like Suzer - larger stroke) */
.icon.icon-contact {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23888888" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
}

/* Location Pin Icon (outline style like Suzer - larger stroke) */
.icon.icon-position {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23888888" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

/* Hover states - turn red */
.sub-menu-nav-custom li a:hover .icon.icon-contact {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23AD172B" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path></svg>');
}

.sub-menu-nav-custom li a:hover .icon.icon-position {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23AD172B" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

.news-section .section-title {
    color: #181818;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-section .section-title::after {
    display: none;
}

/* News Item */
.news-item {
    display: block;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #eee;
}

.news-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

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

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 25px;
    background: #fff;
    color: #181818;
}

.news-content h3 {
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #181818;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.news-content h4 {
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666;
    margin: 0 0 12px 0;
}

.news-content time {
    font-size: 12px;
    color: #AD172B;
    font-weight: 500;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: #fff;
}

.events-section .section-title {
    color: #181818;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.events-section .section-title::after {
    display: none;
}

/* Event Item */
.event-item {
    display: block;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    height: 100%;
}

.event-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #AD172B;
}

.event-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.event-item:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 25px;
    text-align: center;
}

.event-content h3 {
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #181818;
    margin: 0 0 10px 0;
}

.event-content h4 {
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #AD172B;
    margin: 0 0 15px 0;
}

.event-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .sub-menu-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .news-section,
    .events-section {
        padding: 50px 0;
    }
}

/* ============================
   Contact Page Styles (Suzer Exact)
   ============================ */

/* Jumbotron Base */
.jumbotron {
    margin-bottom: 0;
    background-color: #fff;
}

.jumbotron.pt-60 {
    padding-top: 60px;
}

.jumbotron.pb-90 {
    padding-bottom: 90px;
}

/* Map Container (Left Side with Red Border) */
.map-container {
    border: 8px solid #AD172B;
    padding: 80px 60px;
    text-align: center;
    background: #fff;
    min-height: 500px;
}

.map-container .main-title {
    font-family: "Georgia", serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 400;
    color: #181818;
    line-height: 1.6;
    margin-bottom: 40px;
}

.map-container p {
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    color: #181818;
    margin-bottom: 20px;
}

.contact-info-text {
    font-family: Raleway, sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 24px;
}

.label-red {
    color: #ad172b;
    font-weight: 800;
}

.showmap {
    color: #ad172b;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid #ad172b;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.showmap:hover {
    color: #333;
    border-color: #333;
}

/* Map Overlay */
.map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 9999;
    padding: 50px;
    display: none;
    /* hidden by default */
}

.map-overlay.active {
    display: block;
}

#map-frame-container {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.close-map {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ad172b;
    cursor: pointer;
    z-index: 10000;
}

.close-map:before,
.close-map:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-map:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* Right Side Image (kert class) */
.kert {
    padding: 0;
}

.kert .pull-left {
    width: 100%;
    display: block;
}

.kert .kenburns {
    display: block;
    overflow: hidden;
}

.kert .kenburns img {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    display: block;
}

/* Position Section (Istanbul Four) */
.jumbotron.istanbul.four {
    background-color: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.jumbotron.istanbul.four h2 {
    font-family: "Ubuntu", sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #181818;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.jumbotron.istanbul.four .description {
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.8;
}

/* Icons List */
.jumbotron.istanbul.four ul.rows.icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.jumbotron.istanbul.four ul.rows.icons li {
    flex: 0 0 calc(25% - 30px);
    max-width: 250px;
}

.jumbotron.istanbul.four ul.rows.icons li a {
    display: block;
    text-decoration: none;
    color: #181818;
    transition: all 0.3s ease;
}

.jumbotron.istanbul.four ul.rows.icons li a:hover {
    transform: translateY(-5px);
}

.jumbotron.istanbul.four ul.rows.icons li img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

.jumbotron.istanbul.four ul.rows.icons li span {
    display: block;
    font-family: "Ubuntu", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #AD172B;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.jumbotron.istanbul.four ul.rows.icons li p {
    font-family: "Ubuntu", sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Icon Classes for Sub Menu */
.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-right: 5px;
}

.icon.icon-contact {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.icon.icon-position {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.sub-menu-nav li a:hover .icon.icon-contact {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23AD172B"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z"/></svg>');
}

.sub-menu-nav li a:hover .icon.icon-position {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23AD172B"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .map-container {
        padding: 50px 40px;
        min-height: auto;
        margin-bottom: 30px;
    }

    .map-container .main-title {
        font-size: 24px;
    }

    .kert .kenburns img {
        min-height: 400px;
    }

    .jumbotron.istanbul.four ul.rows.icons li {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .map-container {
        padding: 40px 30px;
        border-width: 5px;
    }

    .map-container .main-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .kert .kenburns img {
        min-height: 300px;
    }

    .jumbotron.istanbul.four ul.rows.icons li {
        flex: 0 0 100%;
    }
}