/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #1a1a1a;
    color: #fff;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 0;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
}

.site-logo {
    height: 72px;
    width: auto;
    display: block;
    margin-bottom: 0;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo-h1 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-left: 14px;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
    display: inline-block;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.contact-info i {
    color: #e74c3c;
}

/* Navigation - Menü */
.navbar {
    background: transparent;
    box-shadow: none;
    position: static;
    padding: 0;
    flex: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    flex: none;
    gap: 0 !important;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: none !important;
    box-shadow: none !important;
}

.nav-menu li {
    margin: 0;
    padding: 0;
    background: none !important;
}

.nav-menu li a,
.nav-menu li a:hover,
.nav-menu li a:focus,
.nav-menu li a:active,
.nav-menu li a:visited,
.nav-menu li a:target,
.nav-menu li a.active,
.nav-menu li a[aria-current="page"] {
    background: transparent !important;
    box-shadow: none !important;
    color: #fff;
    border: none !important;
    text-decoration: none !important;
}

.nav-menu li a:hover,
.nav-menu li a:focus,
.nav-menu li a.active,
.nav-menu li a[aria-current="page"],
.nav-menu li a:active {
    color: #e74c3c !important;
}

/* Hero Section */
.hero {
    background: #fff;
    color: #232323;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
    padding: 48px 40px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat h3 {
    font-size: 36px;
    font-weight: 700;
    color: #e74c3c;
}

.stat p {
    font-size: 14px;
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-slogan {
    font-size: 26px;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 18px;
    margin-top: -8px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero .btn-primary[href*="wa.me"] {
    background: #25d366;
    color: #fff;
}
.hero .btn-primary[href*="wa.me"]:hover {
    background: #1ebe57;
    color: #fff;
}
.hero .btn-primary[href*="wa.me"] i {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 0;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 18px auto 0 auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #e74c3c;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #e74c3c;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* About Section Responsive */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .about-text p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    .about-image img {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .about-text p {
        font-size: 13px;
        margin-bottom: 10px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e1e5e9;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #e74c3c;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
    color: #232323;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-card {
    background: #ececec;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    padding: 36px 32px 28px 32px;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-card:hover {
    box-shadow: 0 8px 32px rgba(231,76,60,0.18);
    transform: translateY(-6px) scale(1.03);
}

.contact-icon {
    background: #e74c3c;
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(231,76,60,0.15);
}

.contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #232323;
    letter-spacing: 0.5px;
}

.contact-card p {
    color: #232323;
    font-size: 16px;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #e74c3c;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(231,76,60,0.10);
    transition: background 0.2s, color 0.2s;
}

.map-link:hover {
    background: #e74c3c;
    color: #fff;
}

.phone-link {
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

.phone-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-section h3,
.footer-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #e74c3c;
}

.working-hours li {
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 18px;
    }
    .logo-text {
        font-size: 17px;
    }
    .site-logo {
        height: 56px;
    }
}

@media (max-width: 900px) {
    .header-row {
        height: 64px;
    }
    .site-logo {
        height: 44px;
    }
    .logo-h1 {
        font-size: 16px;
        margin-left: 8px;
    }
    .nav-menu {
        gap: 18px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 16px;
    }
    .hero-image {
        margin-top: 18px;
    }
}

@media (max-width: 768px) {
    .header-row {
        flex-direction: row;
        height: 56px;
    }
    .logo {
        gap: 8px;
    }
    .site-logo {
        height: 36px;
    }
    .logo-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    .nav-menu {
        gap: 10px;
    }
    .nav-menu li a {
        font-size: 13px;
        padding: 6px 0;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 32px 0;
    }
    .hero-content {
        padding: 18px 6px;
        border-radius: 14px;
        gap: 18px;
    }
    .hero-text h1 {
        font-size: 22px;
    }
    .hero-text p {
        font-size: 15px;
    }
    .hero-stats {
        gap: 16px;
        margin-bottom: 18px;
    }
    .stat h3 {
        font-size: 20px;
    }
    .hero-image img {
        border-radius: 10px;
    }
    .hero-slogan {
        font-size: 17px;
        margin-bottom: 10px;
    }
}

.header,
.navbar,
.nav-menu {
    background: #1a1a1a !important;
}

.header-btn {
    margin-left: 20px !important;
    margin-right: 0 !important;
    flex-shrink: 0;
    display: inline-block;
    background: #e74c3c;
    color: #fff !important;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(231,76,60,0.10);
    letter-spacing: 0.5px;
    border: none;
}
.header-btn:hover {
    background: #c0392b;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(231,76,60,0.18);
}
@media (max-width: 600px) {
    .header-btn {
        margin-left: 10px;
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Hamburger Menü */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 0;
    margin-left: 16px;
    z-index: 1201;
    background: transparent;
    position: relative;
}
.mobile-menu-toggle span {
    width: 28px;
    height: 4px;
    background: #fff !important;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.10);
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        right: 10px;
        top: 10px;
        background: #1a1a1a;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    }
    .navbar {
        position: relative;
    }
    .mobile-menu-panel {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #1a1a1a;
        border-radius: 0 0 12px 12px;
        z-index: 1202;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        flex-direction: column;
        align-items: stretch;
    }
    .mobile-menu-panel.active {
        display: flex !important;
    }
    .mobile-menu-panel .nav-menu {
        display: none;
    }
    .mobile-menu-panel.active .nav-menu {
        display: flex !important;
        flex-direction: column;
        width: 100%;
    }
    .nav-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
        z-index: auto;
    }
    .header-btn {
        display: block;
        width: 100%;
        margin: 0 !important;
        border-radius: 0 0 12px 12px;
        text-align: left;
        padding: 16px 28px;
        font-size: 16px;
        background: #e74c3c;
        position: static;
        z-index: auto;
    }
}

@media (min-width: 1025px) {
    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
    }
    .navbar {
        flex: none;
    }
    .mobile-menu-panel {
        display: flex !important;
        position: static;
        background: none;
        box-shadow: none;
        width: auto;
        flex-direction: row;
        align-items: center;
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 38px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.18);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float:hover {
    background: #1ebe57;
    box-shadow: 0 8px 32px rgba(44,62,80,0.22);
    transform: scale(1.08);
    color: #fff;
    text-decoration: none;
}
@media (max-width: 600px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 28px;
        bottom: 18px;
        right: 18px;
    }
} 