/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2c8c99;
    --accent-color: #57c5b6;
    --dark-color: #0a2647;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: var(--white);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Burger Menü */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(10, 38, 71, 0.85), rgba(26, 95, 122, 0.85)),
                url('/images/teknebakim.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--light-color);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.col-img .img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.col-img .img-wrapper:hover {
    transform: scale(1.02);
}

.col-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.lead {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.content-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-box p {
    margin-bottom: 15px;
    color: #555;
}

.content-box strong {
    color: var(--dark-color);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* İletişim Sayfası Özel Stilleri */
.hero-small {
    height: 50vh;
    min-height: 300px;
    margin-top: 80px;
    background: linear-gradient(rgba(10, 38, 71, 0.85), rgba(26, 95, 122, 0.85)),
                url('https://images.unsplash.com/photo-1564501049418-3c27787d01e8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
}

.hero-small .hero-content {
    text-align: center;
    padding-top: 60px;
}

.hero-small h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero-small p {
    font-size: 1.2rem;
}

.contact-section {
    padding: 80px 0;
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-item .details h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item .details p {
    color: var(--gray-color);
    line-height: 1.6;
}

.info-item .details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item .details a:hover {
    color: var(--accent-color);
}

.info-text {
    color: var(--gray-color);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    background: var(--primary-color);
    border-color: var(--primary-color);
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
}

.map-section {
    padding: 0;
    height: 450px;
    background: var(--white);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.working-hours {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.working-hours h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.working-hours ul {
    list-style: none;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-contact {
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
    transition: var(--transition);
}

.whatsapp-contact:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.whatsapp-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.whatsapp-contact i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Form Mesajları */
.form-message {
    display: none;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Sosyal Medya Linkleri */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-links.nav-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger.toggle .line2 {
        opacity: 0;
    }
    
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-small {
        height: 40vh;
        min-height: 250px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-small h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-form-wrapper .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-small h1 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        gap: 15px;
    }
    
    .info-item .icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
/* Our Services Klasörü İçin Düzeltmeler */
.our-services-page .service-hero {
    height: 50vh;
    min-height: 400px;
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.9) 0%, rgba(10, 38, 71, 0.9) 100%),
                url('https://images.unsplash.com/photo-1593115057322-e94b77572f20?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.our-services-page .service-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-services-page .service-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.our-services-page .service-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.our-services-page .service-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

.our-services-page .service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-services-page .service-content {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.our-services-page .service-header {
    text-align: center;
    margin-bottom: 50px;
}

.our-services-page .service-header h2 {
    color: #1a5f7a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.our-services-page .service-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.our-services-page .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.our-services-page .service-feature {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.our-services-page .service-feature:hover {
    transform: translateY(-5px);
}

.our-services-page .feature-icon {
    width: 70px;
    height: 70px;
    background: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.our-services-page .service-feature h3 {
    color: #1a5f7a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.our-services-page .service-feature p {
    color: #666;
    line-height: 1.6;
}

.our-services-page .service-list {
    margin: 40px 0;
}

.our-services-page .service-list h3 {
    color: #1a5f7a;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.our-services-page .service-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.our-services-page .service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.our-services-page .service-list i {
    color: #57c5b6;
}

.our-services-page .service-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.our-services-page .service-cta h3 {
    color: #1a5f7a;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.our-services-page .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.our-services-page .emergency-service {
    background: #ff6b6b;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.our-services-page .emergency-service h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.our-services-page .emergency-service a {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Responsive Our Services */
@media (max-width: 768px) {
    .our-services-page .service-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .our-services-page .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .our-services-page .service-content {
        padding: 30px;
    }
    
    .our-services-page .service-header h2 {
        font-size: 2rem;
    }
}