@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #2a4e72;
    --primary-hover: #1c3d5d;
    --dark: #121212;
    --dark-alt: #1a1a1a;
    --text-color: #666666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #eaeaea;
    --green: #70b848;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

.pb-0 { padding-bottom: 0; }
.mt-30 { margin-top: 30px; }
.mb-50 { margin-bottom: 50px; }
.w-100 { width: 100%; text-align: center; display: block; }

.bg-light { background-color: var(--light-bg); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-yellow { color: var(--primary) !important; }

/* Typography */
.section-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.clip-btn {
    padding-right: 50px; 
}

.clip-btn span {
    position: relative;
    z-index: 2;
}

.btn-yellow {
    background-color: var(--primary);
    color: white;
}

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

.btn-dark {
    background-color: var(--dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--dark);
}

.btn-outline:hover {
    border-color: var(--dark);
}

.btn-accent-black, .btn-accent-yellow {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
    z-index: 1;
    transition: width 0.3s ease;
}

.btn-accent-black { background-color: var(--dark); }
.btn-accent-yellow { background-color: var(--primary); }

.clip-btn:hover .btn-accent-black, .clip-btn:hover .btn-accent-yellow {
    width: 40px;
}

/* Top Bar */
.top-bar {
    background-color: #0a0a0a;
    color: #888;
    font-size: 13px;
    padding: 10px 0;
}

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

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-left i {
    color: var(--primary);
    margin-right: 8px;
}

.divider {
    margin: 0 15px;
    color: #333;
}

.btn-top-yellow {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
}

.btn-top-yellow:hover {
    background-color: var(--primary-hover);
}

/* Navbar */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto; /* Push nav to center-right */
}

.logo-icon {
    color: var(--primary);
    font-size: 28px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--primary);
}

/* Backgrounds */
.topo-bg {
    background-color: var(--dark);
    background-image: repeating-radial-gradient(
        circle at 0 0,
        transparent 0,
        var(--dark) 40px,
        rgba(255,255,255,0.03) 41px,
        transparent 42px
    ),
    repeating-radial-gradient(
        circle at 100% 100%,
        transparent 0,
        var(--dark) 60px,
        rgba(255,255,255,0.03) 61px,
        transparent 62px
    );
    color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

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

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero .title {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.subtitle-wrap .line {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.subtitle-wrap .subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-images {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 5;
}

.img-slant {
    position: absolute;
    background-size: cover;
    background-position: center;
}

.img-slant-1 {
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0% 100%);
    border-bottom: 10px solid var(--primary);
}

.img-slant-2 {
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 60%;
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0% 100%);
}

.slider-dots-hero {
    position: absolute;
    bottom: 50px;
    right: 15%;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dots-hero .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    cursor: pointer;
}

.slider-dots-hero .dot.active {
    background-color: var(--white);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}

.about-heading {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-desc {
    margin-bottom: 30px;
}

.list-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 500;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap .main-img {
    border-radius: 4px;
}

.about-badge {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background-color: var(--white);
    border: 2px dashed var(--dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Projects Slider */
.projects-nav {
    position: absolute;
    top: 50px;
    right: 15px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.projects-nav .arrow-btn {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.projects-nav .arrow-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.projects-slider-viewport {
    overflow: hidden;
    padding: 20px 0;
    margin-top: 30px;
}

.projects-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.project-slide-card {
    min-width: calc((100% - 60px) / 3);
    background-color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

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

.card-img-top {
    height: 250px;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.card-content {
    padding: 30px 40px 40px;
    background-color: var(--white);
    position: relative;
    border-bottom: 5px solid transparent;
    transition: border-color 0.3s ease;
}

.project-slide-card:hover .card-content {
    border-bottom: 5px solid var(--primary);
}

.card-content h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.project-slide-card:hover h4 {
    color: var(--primary);
}

.card-content .plan-desc {
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* What We Build */
.build-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.build-list {
    display: flex;
    flex-direction: column;
}

.build-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.build-item.active {
    border-bottom-color: var(--primary);
}

.build-item.active h4 {
    color: var(--primary);
}

.build-item-info h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.build-item-info p {
    color: #a0a0a0;
    font-size: 14px;
}

.build-item-date {
    font-family: var(--font-heading);
    color: #a0a0a0;
    font-weight: 600;
}

.build-image {
    padding-left: 50px;
}

.build-img-box {
    position: relative;
}

.build-img-box img {
    position: relative;
    z-index: 2;
    width: 100%;
}

.accent-top-right {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50%;
    height: 50%;
    background-color: var(--primary);
    z-index: 1;
}

.accent-bottom-left {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 30%;
    height: 30%;
    background-color: var(--primary);
    z-index: 1;
}

/* Exclusive Services */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.services-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.services-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 66.666%; /* To center 2 items correctly relative to 3 */
}

.service-box {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.service-box:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-wrap i {
    font-size: 30px;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.icon-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.service-box:hover .icon-wrap i{
    color: white;
}

.service-box:hover .icon-bg-shape {
    background-color: var(--primary);
}

.service-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.awards-left {
    position: relative;
}

.awards-left img {
    border-radius: 4px;
}

.quality-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background-color: var(--dark);
    border: 10px solid var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quality-badge span {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
}

.quality-badge small {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.awards-heading {
    font-size: 32px;
    margin-bottom: 40px;
}

.awards-slider-wrap {
    position: relative;
    min-height: 250px;
}

.award-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.award-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cert-display {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    margin-bottom: 30px;
}

.cert-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.awards-nav {
    display: flex;
    gap: 15px;
}

.awards-nav .arrow-btn {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.awards-nav .arrow-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Estimated Price */
.estimated-price {
    position: relative;
}

.ep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch; /* So both sides match height if possible */
}

.ep-form-side {
    padding: 100px 50px 100px 0;
}

.price-form .input-group {
    margin-bottom: 25px;
}

.price-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.price-form select, .price-form input {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}

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

.price-form .form-row .input-group {
    flex: 1;
}

.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.ep-img-side {
    position: relative;
    background-color: var(--primary);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    display: flex;
    align-items: flex-end; /* Align image to bottom */
    justify-content: center;
}

.ep-img-side img {
    max-height: 90%;
    object-fit: contain;
}

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

.article-card {
    background-color: var(--white);
    padding: 50px 40px;
    text-align: left;
    position: relative;
    border: 1px solid var(--border-color);
}

.article-card.highlighted {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white!important;
}

.article-card.highlighted h4,
.article-card.highlighted .icon {
    color: white!important;
}


.article-card .icon {
    font-size: 35px;
    color: var(--dark);
    margin-bottom: 20px;
}

.article-card .date {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.article-card h4 {
    font-size: 22px;
}

.article-card h4 a:hover {
    text-decoration: underline;
}

.card-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: var(--dark);
}

/* Contact Map */
.map-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-visual {
    width: 100%;
    height: 400px;
    background-color: #e5e5e5;
    position: relative;
}

/* Removed unused map-pulse classes */

.address-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.address-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.address-card .subtitle {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
}

.address-text {
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: #888;
}

.footer-top {
    padding: 80px 0;
}

.newsletter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 50px;
}

.newsletter-bar .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: var(--white);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.newsletter-bar .social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.subscribe-wrap {
    display: flex;
    background-color: rgba(255,255,255,0.05);
}

.subscribe-wrap input {
    background: transparent;
    border: none;
    padding: 0 20px;
    color: var(--white);
    outline: none;
    width: 250px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

.footer-widgets h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.contact-list li {
    margin-bottom: 15px;
}

.contact-list i {
    margin-right: 10px;
    width: 15px;
}

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

.quick-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 20px 0;
}

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

.bottom-links a {
    margin-left: 20px;
}

.bottom-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .articles-grid, .services-row-3 { grid-template-columns: repeat(2, 1fr); }
    .project-slide-card { min-width: calc((100% - 30px) / 2); }
    .services-row-2 { width: 100%; }
    .about-grid, .build-grid, .awards-grid, .ep-grid, .map-grid { grid-template-columns: 1fr; }
    .hero-images { display: none; }
    .build-image { padding-left: 0; margin-top: 40px; }
    .ep-img-side { display: none; }
    .newsletter-bar { flex-direction: column; gap: 20px; text-align: center; }
    .footer-widgets { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar, .nav-links { display: none; }
    .hero .title { font-size: 40px; }
    .articles-grid, .services-row-3, .services-row-2, .footer-widgets { grid-template-columns: 1fr; }
    .project-slide-card { min-width: 100%; }
    .form-buttons { flex-direction: column; }
    .projects-nav { position: static; justify-content: center; margin-top: 20px; }
}


/* ================= MOBİL BANNER VE MENÜ DÜZELTMELERİ ================= */

@media (max-width: 992px) {

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

    .quality-badge {
        position: absolute;
        top: -30px;
        left: -10px;
    }

    .ep-form-side{
        display: none;
    }

    .articles.section-padding {
        padding: 0px 0 100px 0;
    }

    .contact-map{
        display: none;
    }

    .newsletter-bar{
        display: none;
    }
    
    /* 1. Menü Başlıklarının Görünmemesi Sorunu */
    .navbar {
        display: flex !important; /* Gizlemeyi kaldır */
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: var(--primary); /* Lacivert arka plan */
        z-index: 999999;
        transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
        justify-content: center;
        align-items: center;
    }

    .navbar.active {
        right: 0;
    }

    .navbar .nav-links {
        display: flex !important; /* Mobilde Flex yap */
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .navbar .nav-links li a {
        color: #ffffff !important; /* Başlıkları BEYAZ yap */
        font-size: 24px !important;
        font-weight: 800;
        letter-spacing: 2px;
        display: block;
    }

    /* 2. Banner Resimlerini Mobilde Geri Getirme */
    .hero {
        height: 600px; /* Mobilde yükseklik ayarı */
    }

    .hero-images {
        display: block !important; /* Resimleri mobilde aç */
        width: 100% !important;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        opacity: 0.4; /* Yazıların okunması için resmi hafiflet */
    }

    .img-slant-1 {
        width: 100% !important;
        left: 0 !important;
        clip-path: none !important; /* Yamuk kesimi mobilde kaldır */
        height: 100%;
    }

    .img-slant-2 {
        display: none; /* Mobilde ikinci resim karmaşa yaratır, gizle */
    }

    .hero-content {
        position: relative;
        z-index: 10; /* Yazıları resmin üstüne al */
        text-align: center;
        margin: 0 auto;
    }

    .hero .title {
        font-size: 36px !important;
        line-height: 1.2;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5); /* Yazı okunurluğu için gölge */
    }

    /* Mobil Toggle Butonu */
    .mobile-toggle {
        display: block !important;
        font-size: 28px;
        color: var(--dark);
        cursor: pointer;
        z-index: 2100;
    }

    .mobile-close {
        display: block !important;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 30px;
        color: #fff;
        cursor: pointer;
    }
}

/* Küçük telefonlar için başlık ayarı */
@media (max-width: 576px) {
    .hero .title { font-size: 28px !important; }
    .hero { height: 500px; }
}