:root {
    --primary: #009fe3;
    /* Logo Light Blue */
    --secondary: #1e1e64;
    /* Logo Navy Blue */
    --accent: #e0f2fe;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --bg-light: #ffffff;
    --bg-gray: #f8fafc;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- HEADER --- */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.top-bar .container {
    max-width: 100% !important;
    padding: 0 30px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    /* Increased by ~25% */
    width: auto;
    display: block;
}

.contact-info-top {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--secondary);
    /* Corporate blue */
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.shimmer-text {
    background: linear-gradient(120deg,
            var(--secondary) 30%,
            #ffffff 50%,
            var(--secondary) 70%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s infinite linear;
}

@keyframes textShimmer {
    0% {
        background-position: 150% 0;
    }

    100% {
        background-position: -50% 0;
    }
}

.info-item i {
    color: var(--primary);
    font-size: 1rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-price {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

#navbar {
    background: var(--secondary);
}

.nav-content {
    display: flex;
    justify-content: center;
    /* Center the menu */
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    display: block;
    padding: 15px 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--secondary);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    border-top: 3px solid var(--primary);
    border-radius: 0 0 8px 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 25px !important;
    text-transform: none !important;
    font-size: 0.85rem !important;
    border: none !important;
    white-space: nowrap;
    text-align: left;
    transition: all 0.3s ease;
    border-left: 0 solid var(--primary);
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: var(--primary);
    color: #ffffff !important;
    padding-left: 35px !important;
    border-left: 4px solid #ffffff;
}

@media (max-width: 992px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        width: 100%;
        display: none;
        /* Hidden by default on mobile unless clicked? Wait, let's keep it visible for now or use a simple toggle */
        border: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        transform: none;
    }
}


.nav-links li a:hover {
    background: var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
}

/* --- HERO SLIDER (3D FLIP) --- */
.hero-slider {
    height: 85vh;
    margin-top: 135px;
    position: relative;
    overflow: hidden;
    perspective: 2000px;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: rotateY(180deg);
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    backface-visibility: hidden;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: rotateY(0deg);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 20px;
    margin-left: 10%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    height: auto; /* Ensure height is auto */
    
    /* Animation for content */
    opacity: 0;
    transform: translateY(40px) translateZ(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-delay: 0.5s;
}

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

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    margin-bottom: 35px; /* Minimum 30px vertical space */
    font-size: 1.15rem;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* --- CORPORATE INTRO --- */
.section-padding {
    padding: 80px 0;
}

.features-grid-reveal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* --- REVEAL ANIMATIONS --- */
.reveal-item,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1.5s ease-out;
}

.reveal-item {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-150px);
}

.reveal-right {
    transform: translateX(150px);
}

.reveal-item.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.brands-title {
    text-align: center;
    margin-bottom: 10px;
}

.title-divider-center {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto 20px;
}

.brands-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- BRANDS --- */
.brands-carousel {
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
    background: #eff2f5; /* Duman grisi arka plan */
    border-top: 1px solid #e1e8ed; /* Üst sınır */
    border-bottom: 1px solid #e1e8ed; /* Alt sınır */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: scrollBrands 80s linear infinite;
}

.brands-track img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(10%) brightness(1.1);
    transition: transform 0.3s ease;
}

.brands-track img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* --- ZIGZAG ROWS --- */
.zigzag-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.zigzag-row.reverse {
    flex-direction: row-reverse;
}

.zigzag-img,
.zigzag-content {
    flex: 1;
}

.zigzag-content h3 {
    font-size: 2rem;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
}

.zigzag-content p {
    font-size: 1.05rem;
    line-height: 1.8 !important;
    color: var(--text-muted);
    margin-bottom: 35px !important;
}

.zigzag-content .btn-primary {
    display: inline-block !important;
}

.zigzag-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

/* --- STATS --- */
.stats-section {
    background: var(--secondary);
    padding: 60px 0;
    color: #fff;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter {
    font-size: 2.5rem;
    font-weight: 900;
}

/* --- FOOTER (FIXED) --- */
#main-footer {
    background-color: var(--secondary);
    background-image: url('../assets/footer-bg.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 100, 0.75);
    /* Darker overlay for readability */
    z-index: 1;
}

#main-footer .container {
    position: relative;
    z-index: 2;
    max-width: 1300px !important;
    /* Back to normal width for better control */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.footer-logo img {
    height: 50px;
    /* Small and elegant */
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 25px;
    max-width: 350px;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #fff;
}

.contact-item i {
    color: var(--primary);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.footer-list {
    list-style: none;
}

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

.footer-list a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Form Card */
.contact-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    color: var(--text-dark);
}

.card-header {
    background: #fbbf24;
    /* Yellow */
    color: var(--secondary);
    padding: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
}

.card-body {
    padding: 20px;
}

.card-body input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.btn-send {
    width: 100%;
    padding: 12px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
}

.btn-send:hover {
    background: var(--primary);
}

/* Social Section (Out of Card) */
.social-section {
    margin-top: 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    /* Center title */
}

.social-section h4 {
    margin-bottom: 15px;
    color: #fff;
}

.social-icons {
    display: flex;
    justify-content: center;
    /* Center icons */
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    color: #ffffff !important;
}

.social-icons a.facebook {
    background: #1877F2;
}

.social-icons a.youtube {
    background: #FF0000;
}

.social-icons a.linkedin {
    background: #0077b5;
}

.social-icons a.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    font-size: 0.85rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.egetim-signature {
    text-decoration: none;
    font-weight: 900;
    position: relative;
    background: linear-gradient(110deg,
            #ff0000 30%,
            #ffffff 48%,
            #ffffff 52%,
            #ff0000 70%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerSparkle 2.5s infinite linear;
    display: inline-block;
}

/* Sparkle effect using a pseudo-element with a star-like flash */
.egetim-signature::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, #ffffff 0%, transparent 10%);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    opacity: 0;
    pointer-events: none;
    animation: sparkleFlash 2.5s infinite linear;
}

@keyframes shimmerSparkle {
    0% {
        background-position: 150% 0;
    }

    100% {
        background-position: -50% 0;
    }
}

@keyframes sparkleFlash {

    0%,
    40% {
        opacity: 0;
        background-position: 100% 50%;
    }

    45% {
        opacity: 1;
        background-position: 50% 50%;
        transform: scale(1.5);
    }

    50% {
        opacity: 0;
        background-position: 0% 50%;
    }

    100% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- SCROLL TO TOP --- */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    /* Smaller and more aesthetic */
    height: 42px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    display: none;
    transition: var(--transition);
}

#scroll-to-top:hover {
    background: var(--secondary);
}

/* --- REUSABLE BUTTONS --- */
.btn-primary {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-slider {
        margin-top: 160px;
        height: 60vh;
    }

    .hero-content {
        margin-left: 5%;
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col p,
    .social-section {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

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

    .zigzag-row {
        flex-direction: column;
    }
}

.btn-whatsapp:hover {
    transform: scale(1.05) translateY(-5px);
    background: #1eb954 !important;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
    }

    .page-title-section h1 {
        font-size: 2.2rem !important;
    }

    .about-flex-layout {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .whatsapp-cta-block {
        padding: 40px 20px !important;
    }
}

/* Value Cards (Mission/Vision) */
.mv-card {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 25px;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.mv-content h3 {
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.mv-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Bank Account Cards - Final Premium Style */
.bank-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 40px auto;
}

.bank-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f6;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.bank-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.bank-logo-wrap {
    width: 100%;
    height: 70px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-logo-fixed {
    height: 40px;
    /* Elegant and standardized height */
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.bank-details-flex {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-group label,
.iban-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.account-name {
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
}

.iban-box {
    background: #f8fafc;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.iban-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1rem;
}

.copy-btn-modern {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.copy-btn-modern:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    z-index: 2000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: toastUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.copy-toast.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}
/* --- CONTACT PAGE --- */
.contact-header {
    padding: 100px 0 60px;
    background: var(--bg-gray);
    text-align: center;
    margin-top: 135px;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -40px;
    padding-bottom: 80px;
}

.contact-info-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(30, 30, 100, 0.08);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 30, 100, 0.15);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.contact-info-card p {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 20px;
        margin-top: 160px;
    }
    .contact-header h1 {
        font-size: 2.2rem;
    }
    .map-container iframe {
        height: 450px !important;
    }
}

/* --- TEKLIF AL PAGE STYLES --- */
.page-header-simple {
    padding: 140px 0 100px;
    background: url('../assets/engineering-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-header-simple h1 {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8), 0 0 5px rgba(0, 0, 0, 0.5); /* Okunabilirlik için güçlü gölge */
}

.page-header-simple p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9);
}

.page-header-simple .breadcrumb-nav-white {
    margin-top: 20px;
    justify-content: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.9);
}

.quote-form-section {
    background-color: #f4f7f9;
}

.quote-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.1);
}

/* File Upload Style */
.file-upload-wrapper {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(0, 159, 227, 0.02);
}

.file-upload-content i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.file-upload-content p {
    font-weight: 600;
    color: var(--text-dark);
}

.file-upload-content p span {
    color: var(--primary);
    text-decoration: underline;
}

.file-upload-content small {
    display: block;
    margin-top: 5px;
    color: #777;
}

.file-list {
    margin-top: 15px;
    text-align: left;
}

.file-item {
    font-size: 0.9rem;
    color: var(--secondary);
    background: #f0f4f8;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Submit Button */
.form-submit {
    margin-top: 40px;
}

.btn-quote-submit {
    width: 100%;
    padding: 20px;
    background-color: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 30, 100, 0.2);
}

.btn-quote-submit:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 159, 227, 0.3);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .quote-form-container {
        padding: 30px 20px;
    }
    .page-header-simple h1 {
        font-size: 2.5rem;
    }
}

/* --- PRODUCTS GRID PAGE STYLES --- */
.products-grid-section {
    background-color: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

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

.product-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.product-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.product-card-content h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
}

.btn-card {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-card:hover {
    background: transparent;
    color: var(--primary);
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-card-img {
        height: 200px;
    }
}

/* --- CATALOG REBUILD 4-LAYERS --- */
.catalog-main-wrapper {
    padding-top: 160px; /* Clears fixed header */
}

/* KATMAN 1: BREADCRUMB NAVY HERO */
.breadcrumb-navy-strip {
    padding: 100px 0; /* Alanı biraz daha büyüterek görseli sergiliyoruz */
    background: linear-gradient(rgba(0, 11, 26, 0.2), rgba(0, 11, 26, 0.2)), url('../assets/izmir-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax etkisi için sabitlendi */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.breadcrumb-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Okunabilirlik için gölge artırıldı */
}

.breadcrumb-nav-white {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8); /* Linkler için gölge eklendi */
}

.breadcrumb-nav-white a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-nav-white a:hover {
    color: var(--primary);
}

.breadcrumb-nav-white .sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* KATMAN 2: WHITE INTRO */
.intro-white-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.intro-content-centered h1 {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 15px;
}

.corporate-divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 25px;
}

.intro-content-centered p {
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

/* KATMAN 3: CATALOG GRID */
.product-catalog-grid {
    background-color: #f8fafc;
}

/* KATMAN 4: CLOSING CTA */
.closing-cta-layer {
    padding: 80px 0 140px; /* Alttan footer ile arayı açmak için padding artırıldı */
    background: #f8f9fa;
    text-align: center;
    color: var(--secondary);
}

.cta-message-box p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary-cta {
    background: var(--primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-whatsapp-cta {
    background: #25d366;
    color: #fff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary-cta:hover, .btn-whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .catalog-hero-section h1 {
        font-size: 2.8rem;
    }
    .catalog-hero-section p {
        font-size: 1.1rem;
    }
    .catalog-hero-section {
        padding: 80px 0 60px;
    }
}

/* --- CATALOG CTA SECTION --- */
.catalog-cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(30, 30, 100, 0.9), rgba(30, 30, 100, 0.9)), url('../assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.catalog-cta-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    font-weight: 400;
    opacity: 0.95;
}

.catalog-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-navy {
    padding: 18px 45px;
    background: var(--secondary);
    color: #ffd700; /* Gold text */
    border: 2px solid #ffd700;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-navy:hover {
    background: #ffd700;
    color: var(--secondary);
    transform: translateY(-3px);
}

.btn-cta-whatsapp {
    padding: 18px 45px;
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
    background: transparent;
    color: #25d366;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .catalog-cta-content p {
        font-size: 1.1rem;
    }
}

/* --- CUSTOMER REVIEWS --- */
#customer-reviews {
    background-color: #ffffff;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* --- MUSTERI YORUMLARI --- */
#musteri-yorumlari {
    background-color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Background darkening for high-contrast stars */
#musteri-yorumlari::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.08); /* 8% darkening */
    z-index: 1;
}

#musteri-yorumlari .container {
    position: relative;
    z-index: 3;
}

.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: block !important;
    opacity: 1 !important;
}

.stars-layer::before,
.stars-layer::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f0ff !important; /* Kristal Elektrik Mavisi */
    border-radius: 50%;
    box-shadow: 0 0 8px #00f0ff, 0 0 12px #0055ff !important; /* Çift katmanlı güçlü mavi parlama */
}

/* Layer 1: ~35 Stars */
.stars-layer::before {
    top: 5%;
    left: 5%;
    box-shadow: 
        10vw 15vh 6px #00f0ff, 25vw 5vh 8px #0055ff, 40vw 12vh 6px #00f0ff, 60vw 8vh 8px #0055ff, 80vw 15vh 6px #00f0ff, 95vw 5vh 6px #00f0ff,
        5vw 35vh 8px #00f0ff, 20vw 42vh 6px #00f0ff, 35vw 30vh 8px #0055ff, 55vw 45vh 6px #00f0ff, 75vw 35vh 8px #0055ff, 90vw 50vh 6px #00f0ff,
        15vw 65vh 6px #00f0ff, 30vw 75vh 8px #0055ff, 50vw 60vh 6px #00f0ff, 70vw 72vh 8px #0055ff, 85vw 65vh 6px #00f0ff, 12vw 85vh 8px #00f0ff,
        28vw 92vh 6px #00f0ff, 45vw 80vh 8px #0055ff, 65vw 88vh 6px #00f0ff, 82vw 95vh 8px #0055ff, 98vw 82vh 6px #00f0ff, 2vw 55vh 6px #00f0ff,
        38vw 20vh 8px #0055ff, 58vw 25vh 6px #00f0ff, 78vw 18vh 8px #0055ff, 8vw 5vh 6px #00f0ff, 22vw 60vh 6px #00f0ff, 52vw 10vh 6px #00f0ff;
    animation: twinkle 3s infinite ease-in-out;
}

/* Layer 2: ~35 Stars */
.stars-layer::after {
    top: 10%;
    left: 10%;
    width: 3.5px;
    height: 3.5px;
    box-shadow: 
        15vw 25vh 6px #00f0ff, 35vw 15vh 8px #0055ff, 55vw 25vh 6px #00f0ff, 75vw 10vh 8px #0055ff, 92vw 25vh 6px #00f0ff, 7vw 10vh 6px #00f0ff,
        12vw 45vh 8px #00f0ff, 28vw 55vh 6px #00f0ff, 48vw 35vh 8px #0055ff, 68vw 55vh 6px #00f0ff, 88vw 35vh 8px #0055ff, 5vw 60vh 6px #00f0ff,
        22vw 75vh 6px #00f0ff, 42vw 85vh 8px #0055ff, 62vw 70vh 6px #00f0ff, 82vw 82vh 8px #0055ff, 97vw 65vh 6px #00f0ff, 18vw 95vh 8px #0055ff,
        3vw 2vh 6px #00f0ff, 53vw 92vh 8px #0055ff, 73vw 88vh 6px #00f0ff, 93vw 95vh 8px #0055ff, 33vw 40vh 6px #00f0ff, 63vw 15vh 6px #00f0ff,
        83vw 45vh 8px #0055ff, 10vw 80vh 6px #00f0ff, 25vw 5vh 8px #0055ff, 45vw 55vh 6px #00f0ff, 65vw 5vh 8px #0055ff, 85vw 75vh 6px #00f0ff;
    animation: twinkle 4.5s infinite ease-in-out 0.8s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; transform: scale(0.7); }
    50% { opacity: 1.0; transform: scale(1.3); filter: drop-shadow(0 0 10px #00f0ff); }
}

.yorum-header {
    text-align: center;
    margin-bottom: 30px;
}

.yorum-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

.yorum-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
    align-items: stretch !important;
}

.yorum-card {
    background: #fff;
    padding: 18px 22px !important;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
}

.yorum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.yorum-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.yorum-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.yorum-info h3 {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 700;
    margin: 0;
}

.yorum-stars {
    color: #fbbf24;
    font-size: 0.7rem;
    margin-top: 1px;
}

.yorum-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.reviews-btn-wrap {
    text-align: center;
}

.btn-all-reviews {
    display: inline-block;
    padding: 12px 35px;
    background: var(--secondary);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 30, 100, 0.1);
    border: 2px solid var(--secondary);
}

.btn-all-reviews:hover {
    background: #e11d48;
    border-color: #e11d48;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
}

@media (max-width: 1024px) {
    .yorum-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .yorum-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .yorum-card {
        padding: 15px 18px !important;
    }
}

/* Corporate Success Modal Styles (Global) */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 46, 91, 0.85); /* Corporate Navy/Indigo */
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.quote-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.quote-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 159, 227, 0.4); /* Crystal blue highlight */
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.quote-modal-overlay.active .quote-modal-content {
    transform: scale(1);
}
.quote-modal-icon {
    font-size: 64px;
    color: #009fe3; /* Crystal Blue */
    margin-bottom: 20px;
    animation: popIn 0.5s ease forwards;
}
.quote-modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #002e5b; /* Corporate Navy */
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}
.quote-modal-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}
.quote-modal-btn {
    background: linear-gradient(135deg, #009fe3 0%, #002e5b 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.quote-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.3);
}
@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
/* Top crystal blue bar on modal */
.quote-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #009fe3, #002e5b);
}

/* --- RESPONSIVE & MOBILE FIXES --- */
img {
    max-width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: var(--secondary);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    transition: var(--transition);
}

@media (max-width: 992px) {
    /* Hide top bar contact info */
    .contact-info-top {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: inline-block;
    }
    
    /* Mobile Navbar */
    #navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        padding: 0;
    }
    
    #navbar.active {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }
    
    .nav-content {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: left;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0,0,0,0.1);
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Typography Scaling */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem !important;
    }
    
    /* Layout Fixes */
    .zigzag-row {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 50px;
    }
    .zigzag-row.reverse {
        flex-direction: column !important;
    }
    .zigzag-img img {
        height: auto;
    }
    
    .about-flex-layout {
        flex-direction: column !important;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-grid {
        grid-template-columns: 1fr;
    }
    
    .product-catalog-grid .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    }
    
    .hero-content {
        margin-left: 0;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid-reveal {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    body, html {
        overflow-x: hidden;
    }
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
    }
    .logo img {
        height: 60px;
    }
    .btn-price {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    /* Hamburger menü dışındaki, logonun yanındaki butonu KESİN olarak yok et */
    .top-bar-right .btn-price, 
    header a.btn-price { 
        display: none !important; 
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

@media (max-width: 768px) {
    #main-footer, 
    #main-footer .container, 
    #main-footer .footer-grid, 
    #main-footer .footer-col {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-right: auto !important;
        margin-left: auto !important;
        float: none !important;
    }
    
    /* İletişim satırlarındaki ikonların ve metinlerin mobilde ortalanması */
    #main-footer .contact-info-footer, 
    #main-footer .contact-info-footer .contact-item, 
    #main-footer li, 
    #main-footer p, 
    #main-footer .footer-logo,
    #main-footer .social-icons {
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
    }
    
    /* To fix flex row wrap issues if any */
    #main-footer .social-icons {
        gap: 15px;
        flex-direction: row !important;
    }
    
    /* Shrink the mobile banner info box so the slider breathes */
    .hero-content {
        margin-left: 0 !important;
        padding: 1.5rem !important;
        width: 90% !important;
        margin: 0 auto !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        max-height: 60vh;
        overflow-y: auto;
    }
    .hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    .hero-content p {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
    }
    .hero-btns {
        gap: 10px !important;
    }
    .hero-btns .btn-cta, .hero-btns .btn-outline {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 991px) {
    /* Mobile Menu CTA Button Styling */
    .mobile-only-nav-item a.btn-price-mobile {
        display: block !important;
        background: linear-gradient(90deg, #009fe3, #002e5b) !important;
        color: #ffffff !important;
        text-align: center !important;
        padding: 12px 20px !important;
        border-radius: 6px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        margin: 15px 20px !important;
        width: calc(100% - 40px) !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 15px rgba(0, 46, 91, 0.3) !important;
        border-bottom: none !important;
    }
}
