/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333;
    --accent-color: #40E0D0;
    --text-color: #f5f5f5;
    --text-secondary: #aaa;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(64, 224, 208, 0.3);
}

.btn:hover::before {
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), #1a1a1a;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), #222;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1000;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Why Us Section Styles */
.why-us {
    padding: 100px 0;
    background-color: var(--primary-color);
    margin: 0;
    width: 100%;
}

.why-us-container {
    max-width: 1300px;
    width: 95%;
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px auto 0;
    max-width: 1250px;
    padding: 0;
    width: 100%;
}

@media (max-width: 1300px) {
    .why-us-grid {
        max-width: 1100px;
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .why-us-grid {
        max-width: 1000px;
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 80px 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        gap: 30px;
    }

    .why-us-box {
        padding: 35px 30px;
        margin: 0 auto;
        width: 100%;
        min-height: 320px;
    }

    .why-us-icon {
        font-size: 2.3rem;
        width: 65px;
        height: 65px;
        line-height: 65px;
    }

    .why-us-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding: 60px 0;
    }

    .why-us-grid {
        max-width: 100%;
        padding: 0 15px;
        gap: 25px;
    }

    .why-us-box {
        padding: 30px 25px;
        min-height: 300px;
    }
}

.why-us-box {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 350px;
}

.why-us-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-us-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(64, 224, 208, 0.15), transparent);
    transition: height 0.5s ease;
    z-index: -1;
}

.why-us-box:hover::before {
    height: 100%;
}

.why-us-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: all 0.4s ease;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(64, 224, 208, 0.1);
}

.why-us-box:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(64, 224, 208, 0.2);
}

.why-us-box h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
    width: 100%;
}

.why-us-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.why-us-box:hover h3::after {
    width: 70px;
}

.why-us-box p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(64, 224, 208, 0.4); }
    50% { opacity: 0.9; transform: scale(1.05); box-shadow: 0 0 0 10px rgba(64, 224, 208, 0); }
    100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(64, 224, 208, 0); }
}

.floating-icon {
    animation: float 4s ease-in-out infinite, pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 5px var(--accent-color));
    position: relative;
}

.icon-container {
    margin-bottom: 5px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Styles */
/* Modal for enlarged images */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s ease;
}

.modal-content.active {
    transform: scale(1);
    opacity: 1;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-modal:hover {
    opacity: 1;
}

/* Gallery specific styles */
.gallery-container {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    background: var(--secondary-color);
    color: var(--text-color);
    border: none;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), linear-gradient(45deg, #1a1a1a, #333);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--accent-color);
}

/* Contact Page Styles */
.contact-container {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Ensure the left column with two sections has the same size as the right column */
.contact-grid .left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-grid .right-column .contact-form {
    height: 100%;
}

.left-column {
    transition: transform 0.5s ease-out;
}

.right-column {
    transition: transform 0.5s ease-out;
}

.left-column:hover, .right-column:hover {
    transform: translateY(-5px);
}

.contact-info {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.contact-info:hover h3::after {
    width: 100px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 5px;
}

.contact-info-item:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.contact-info-item .content h4 {
    margin-bottom: 5px;
}

.contact-info-item .content p {
    color: var(--text-secondary);
}

.contact-form {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.contact-form:hover h3::after {
    width: 100px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
    padding: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--primary-color);
    border: 1px solid #444;
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group:focus-within label {
    color: var(--accent-color);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.form-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.4s ease;
    z-index: 0;
}

.form-group:focus-within::after {
    width: 100%;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.success-message {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Button animations */
.btn-animated {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
}

.btn-animation-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 1;
}

.btn-animated:hover .btn-animation-overlay {
    width: 300%;
    height: 300%;
}

.btn-animated:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    background-color: var(--secondary-color);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: var(--accent-color);
    text-align: center;
    padding: 20px;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-email-info {
    margin-top: 30px;
    text-align: center;
}

.contact-email-info p {
    margin-bottom: 10px;
}

.email-button-container {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid .left-column {
        gap: 30px;
    }
    
    .contact-grid .right-column .contact-form {
        height: auto;
    }
    
    .left-column {
        animation: fadeIn 0.8s ease-out forwards;
    }
    
    .right-column {
        animation: fadeIn 0.8s ease-out forwards;
        animation-delay: 0.3s;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 60px 0;
    }
    
    .contact-grid {
        gap: 20px;
    }
    
    .contact-info, .contact-form {
        padding: 20px;
    }
    
    .form-control {
        padding: 10px;
    }

    /* Additional contact page styles */
    .contact-container-fade {
        opacity: 0;
        animation: fadeInPage 1s ease-out forwards 0.3s;
    }

    .contact-column-flex {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .email-button {
        font-size: 1.2rem;
        padding: 15px 40px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .icon-margin-right {
        margin-right: 10px;
        position: relative;
        z-index: 2;
    }

    .z-index-2 {
        position: relative;
        z-index: 2;
    }

    .textarea-min-height {
        min-height: 120px;
    }

    .map-margin-top {
        margin-top: 50px;
    }

    .section-margin-bottom {
        margin-bottom: 30px;
    }

    .google-map-container {
        width: 100%;
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
    }

    .iframe-border-none {
        border: 0;
    }
}
/* About Page Styles */
.about-content {
    padding: 100px 0;
    background-color: var(--primary-color);
}

/* Hikayemiz Section */
.hikayemiz-container {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
}

.hikayemiz-text {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    margin-top: 30px;
}

.hikayemiz-text:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hikayemiz-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 768px) {
    .about-content {
        padding: 60px 0;
    }
    
    .hikayemiz-container {
        padding: 20px 15px;
    }
    
    .hikayemiz-text {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hikayemiz-container {
        padding: 15px 10px;
    }
}
/* Achievements Section */
.achievements {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.achievement-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(64, 224, 208, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.achievement-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.achievement-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-color);
}

@media (max-width: 1200px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-card {
        max-width: 300px;
        margin: 0 auto;
    }
}
/* Goals Section */
.goals {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.goal-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.goal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(64, 224, 208, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.goal-icon i {
    font-size: 2.2rem;
    color: var(--accent-color);
}

.goal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.goal-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.goal-card:hover h3::after {
    width: 60px;
}

.goal-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .goal-card {
        max-width: 350px;
        margin: 0 auto;
    }
}
/* Transport Regions Section */
.transport-regions {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.region-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.region-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: rgba(64, 224, 208, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.region-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.region-content {
    flex-grow: 1;
}

.region-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.region-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .region-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .region-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .region-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}