:root {
    --primary-blue: #002D5B;
    --light-bg: #f4f7f9;
    --text-color: #333;
    --white: #ffffff;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.sticky {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 80px;
    width: auto;
    transition: max-height 0.3s ease;
}

header.sticky .logo img {
    max-height: 55px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    padding: 8px 18px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.3s;
    display: block;
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--primary-blue);
    background: rgba(0, 45, 91, 0.05);
}

nav ul li a.active {
    color: var(--primary-blue);
    background: rgba(0, 45, 91, 0.1);
    border-bottom: none;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-lang-switcher {
    display: none;
}

.lang-btn {
    text-decoration: none;
    color: #999;
    font-weight: 400;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
    color: var(--primary-blue);
    background: rgba(0, 45, 91, 0.05);
}

.lang-btn.active {
    color: var(--primary-blue);
    font-weight: 500;
    background: rgba(0, 45, 91, 0.08);
}

.lang-separator {
    color: #ddd;
    font-weight: 300;
    font-size: 12px;
}

/* Hero Section / Slider */
.hero {
    position: relative;
    min-height: 70vh;
    color: var(--white);
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    overflow: visible;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.hero-slide .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Slider Indicators (Dots) */
.hero-indicators {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-indicators .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicators .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-indicators .dot.active {
    background-color: #fff;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-blue);
}

/* Sayfa küçüldüğünde alt tarafa hizalayalım yatay olarak */
@media (max-width: 768px) {
    .hero-indicators {
        right: 50%;
        top: auto;
        bottom: 120px;
        transform: translateX(50%);
        flex-direction: row;
    }
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: #001a3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 45, 91, 0.3);
}

/* Info Cards Wrapper */
.info-cards-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1050px;
    padding: 0 20px;
    z-index: 20;
}

.info-card {
    background: #002D5B;
    /* Solid primary blue */
    color: white;
    padding: 20px;
    /* Comfortable padding */
    border-radius: 12px;
    display: flex;
    align-items: center;
    /* Center vertically */
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    min-height: 150px;
    /* TALLER CARD - "Uzunlamasına" */
    position: relative;
    overflow: hidden;
}

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

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.card-icon i {
    font-size: 40px;
    color: #ffffff !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

/* Titles */
.card-title {
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Product Catalog Card Overrides - Large Style */
.product-catalog-card .card-icon {
    width: 70px;
    height: 70px;
}

.product-catalog-card .card-icon i {
    font-size: 60px;
}

.product-catalog-card .card-title {
    font-size: 18px;
    margin: 2px 0 5px 0;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.card-title span {
    display: block;
    /* Force stack for PRODUCT / CATALOG */
}

.card-title.single-line {
    margin-bottom: 5px;
    font-size: 18px;
    padding-top: 5px;
}

/* Generic Contact Row Styles */
.contact-rows {
    display: flex;
    flex-direction: column;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.contact-row a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-row a:hover {
    opacity: 0.8;
}

/* Contact Card Specifics (Aligned with Product Catalog Card) */
.contact-card {
    /* Uses default flex-row from .info-card */
    justify-content: flex-start;
    /* Ensure left alignment */
}

/* Match Product Catalog icon size */
.contact-card .card-icon {
    width: 70px;
    height: 70px;
}

.contact-card .card-icon i {
    font-size: 50px;
    /* Slightly smaller than PDF icon to fit nicely */
    transform: rotate(-45deg);
}

.contact-card .card-title {
    font-size: 18px;
    margin: 2px 0 5px 0;
    /* Add some bottom margin for spacing */
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.contact-card .contact-rows {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Increased gap slightly */
}

.contact-card .contact-row {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-card .contact-row i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    opacity: 0.9;
}

/* Address Text */
.address-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Download Button */
.btn-download {
    background: white;
    color: #002D5B;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-download:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-download i {
    font-size: 14px;
}

/* Responsive adjustment for info cards */
@media (max-width: 991px) {
    .info-cards-wrapper {
        grid-template-columns: 1fr;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -30px;
        margin-bottom: 50px;
        gap: 15px;
    }

    .info-card {
        min-height: auto;
        padding: 25px;
    }
}

/* Sections General */
.section-title {
    text-align: center;
    margin: 50px 0 40px;
    font-weight: 800;
    font-size: 32px;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* News Section */
.news-section {
    margin-top: 120px;
    /* Space for the absolute info cards */
    margin-bottom: 80px;
}

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

.news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.news-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-item p {
    padding: 25px 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Motto Section */
.motto-section {
    background: var(--light-bg);
    padding: 80px 0;
    text-align: center;
    margin: 80px 0;
}

.motto-section span {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.motto-section h2 {
    font-size: 38px;
    color: var(--primary-blue);
    margin: 15px 0 25px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
}

.motto-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Catalog Section */
.catalog-section {
    margin-bottom: 100px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}


.catalog-card {
    border: 1px solid rgba(0, 45, 91, 0.18);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    background: white;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 45, 91, 0.12);
}

.card-inner {
    padding: 0;
    background: white;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-inner img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    max-width: none;
    margin-bottom: 0;
    display: block;
}

.card-inner h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 15px;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view {
    display: block;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    padding: 8px 6px;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.3px;
    transition: background 0.3s;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-view:hover {
    background: #001a3d;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-col p i {
    margin-right: 10px;
    width: 20px;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    nav ul {
        gap: 2px;
    }

    nav ul li a {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Mobile Header */
    .menu-toggle {
        display: flex;
    }

    .lang-switcher {
        display: none;
    }

    .mobile-lang-switcher {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 25px 20px;
        background: var(--light-bg);
        border-top: 1px solid #eee;
        margin-top: auto;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        padding: 18px 25px;
        text-align: left;
        font-size: 16px;
    }

    /* Overlay */
    nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 45vh;
        margin-bottom: 0;
        display: block;
        overflow: hidden;
    }

    .hero-slider {
        height: 45vh;
        position: relative;
    }

    .hero-slide {
        height: 45vh;
    }

    .hero-slide .container {
        display: flex;
        flex-direction: row;
        gap: 0;
        width: 100%;
        align-items: stretch;
        height: 45vh;
        padding: 0;
        max-width: 100%;
    }

    .hero-content {
        width: 62%;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 13px;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 12px;
        align-self: flex-start;
    }

    /* Info Cards Mobile - Standard Stack */
    .hero>.container {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0 15px;
        right: auto;
        top: auto;
        display: block;
        z-index: 10;
        margin-top: -30px;
    }

    .info-cards-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .info-card {
        padding: 20px 25px;
        min-height: auto;
        border-radius: 10px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 32px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .contact-item {
        font-size: 12px;
    }

    .btn-download {
        padding: 8px 16px;
        font-size: 12px;
        margin-top: 5px;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 22px;
        margin: 60px 0 30px;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
    }

    .news-section {
        margin-top: 40px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-item img {
        height: 200px;
    }

    /* Motto Section Mobile */
    .motto-section {
        padding: 50px 15px;
        margin: 60px 0;
    }

    .motto-section h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .motto-section p {
        font-size: 14px;
        padding: 0 10px;
    }

    /* Catalog Grid Mobile */
    .catalog-section {
        margin-bottom: 60px;
    }

    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
        max-width: 100%;
        width: 100%;
    }

    .catalog-grid .btn-view {
        font-size: 8px;
        padding: 5px 3px;
        letter-spacing: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .info-card {
        padding: 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .motto-section h2 {
        font-size: 20px;
    }

    .motto-section p {
        font-size: 13px;
    }
}

/* Contact Page Styles */
.contact-map-hero {
    position: relative;
    width: 100%;
    height: 500px;
    /* Reduced from 500 to 450 if needed */
    background: #e9ecef;
    margin-bottom: 0px;
}

.contact-map-hero iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* Optional: grayscale main map */
    /* filter: grayscale(100%); */
}

/* Container for overlaying cards */
.contact-overlay-container {
    position: relative;
    margin-top: -100px;
    /* Pull up to overlap map */
    z-index: 10;
    margin-bottom: 80px;
}

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

/* Contact Info Cards - Matched to Home Page Style */
.contact-info-card {
    background: var(--primary-blue);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
    border-bottom: none;
    height: 100%;
    display: flex;
    /* Horizontal layout */
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    color: white;
    cursor: pointer;
}

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

.contact-info-card i {
    font-size: 40px;
    color: white;
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: transparent;
    /* Remove circle background */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card div {
    flex: 1;
}

.contact-info-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    display: block;
}

.contact-info-card a:hover {
    color: white;
    opacity: 1;
}

/* Contact Form Overrides */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto 100px;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-section {
        margin: 0 20px 80px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-map-hero {
        height: 350px;
    }

    .contact-overlay-container {
        margin-top: -50px;
        padding: 0 15px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

/* Split Layout for Contact Page */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Specific Panel Styles */
.contact-info-panel,
.contact-form-panel {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info-panel {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 45, 91, 0.3);
}

.contact-info-panel h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    color: white;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 24px;
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item div h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: white;
}

.info-item div p,
.info-item div a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-decoration: none;
    margin: 0;
}

.contact-form-panel {
    background: white;
    position: relative;
}

.contact-form-panel h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group.half {
    width: 50%;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-overlay-container {
        margin-bottom: 50px;
    }
}

/* Contact Form Styles (Restored) */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 45, 91, 0.1);
}

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

.btn-submit {
    background: var(--primary-blue);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn-submit:hover {
    background: #001a3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 45, 91, 0.2);
}


/* Solar Kablo Page Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 500;
}

.content-section {
    margin-bottom: 80px;
}

.content-intro {
    margin-bottom: 60px;
}

.content-intro .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-block h3 {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 30px 0 20px;
}

.content-block h4 {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-item i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.selection-criteria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.criteria-item {
    padding: 25px;
    background: white;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.criteria-item h4 {
    margin-bottom: 12px;
}

.criteria-item p {
    margin: 0;
    font-size: 15px;
}

.highlight-block {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-blue);
}

.comparison-list, .installation-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.comparison-list li, .installation-list li {
    padding: 15px 20px;
    background: white;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.comparison-list li strong, .installation-list li strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.certificate-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.certificate-block .lead {
    font-size: 20px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.certificate-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.certificate-info h3 {
    color: var(--primary-blue);
    margin-top: 0;
}

.product-features {
    margin: 60px 0;
}

.product-features h2 {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 35px 20px;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 45, 91, 0.2);
}

.feature-card i {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.feature-card:hover i {
    color: white;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 13px;
    margin: 0;
    opacity: 0.8;
}

.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 15px;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-blue);
    padding: 15px 40px;
    font-size: 16px;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .selection-criteria {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .certificate-block {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
}

/* Video Section */
.video-section {
    margin: 80px 0;
    text-align: center;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: background 0.3s;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-content {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.video-label {
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.play-button i {
    font-size: 28px;
    color: var(--primary-blue);
    margin-left: 4px;
}

.video-container video {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .video-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .video-label {
        font-size: 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .video-container video {
        height: 250px;
    }
}