/* Reset ve Genel 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: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.nav-brand::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #e74c3c, transparent);
    opacity: 0.3;
}

.nav-brand .logo {
    height: 55px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-brand h1 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.nav-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 1;
    min-width: 0;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.08) 0%, rgba(44, 90, 160, 0.12) 100%);
    border-radius: 30px;
    border: 2px solid rgba(44, 90, 160, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.contact-info:hover::before {
    left: 100%;
}

.contact-info:hover {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.15) 0%, rgba(44, 90, 160, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.2);
    border-color: rgba(44, 90, 160, 0.3);
}

.contact-info i {
    color: #e74c3c;
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info:hover i {
    background: rgba(231, 76, 60, 0.2);
    transform: scale(1.1);
}

.contact-info span {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Phone number special styling */
.contact-info.phone-contact {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, rgba(231, 76, 60, 0.12) 100%);
    border-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.contact-info.phone-contact:hover {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(231, 76, 60, 0.2) 100%);
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.contact-info.phone-contact i {
    background: rgba(231, 76, 60, 0.15);
    color: #fff;
}

.contact-info.phone-contact:hover i {
    background: rgba(231, 76, 60, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    padding: 160px 0 100px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-details {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.service-details li {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-item i {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    min-width: 24px;
}

.feature-item div {
    flex: 1;
}

.feature-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: fit-content;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
}

.stat h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.area-column h4 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e74c3c;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #ecf0f1;
}

.area-column li:last-child {
    border-bottom: none;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn {
    background: #e74c3c;
}

.call-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0,0,0,0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
}

/* CTA Sections */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

.cta-urgent {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.cta-service {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
}

.cta-final {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-text h3 i {
    margin-right: 0.5rem;
    color: #fff;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-cta.whatsapp {
    background: #25d366;
    color: white;
}

.btn-cta.whatsapp:hover {
    background: #128c7e;
}

.btn-cta.call {
    background: #fff;
    color: #e74c3c;
    border: 2px solid #fff;
}

.btn-cta.call:hover {
    background: transparent;
    color: #fff;
}

.btn-cta.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

.btn-cta.full-width {
    width: 100%;
}

.btn-cta i {
    font-size: 1.3rem;
}

/* Contact Form Updates */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.whatsapp-alternative {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
    text-align: center;
}

.whatsapp-alternative p {
    margin-bottom: 1rem;
    color: #666;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons {
        min-width: auto;
        width: 100%;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 100px;
    border-left: 4px solid #e74c3c;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-item i {
    font-size: 2.2rem;
    color: #e74c3c;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
    min-width: 0;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-form h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    padding: 1.2rem;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.whatsapp-alternative {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
    text-align: center;
}

.whatsapp-alternative p {
    margin-bottom: 1rem;
    color: #666;
    font-weight: 500;
}

.whatsapp-alternative .btn-cta {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-contact {
        gap: 2rem;
    }
    
    .contact-info {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .nav-brand .logo {
        height: 55px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-contact {
        gap: 1rem;
    }
    
    .contact-info {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        gap: 0.4rem;
    }
    
    .contact-info i {
        font-size: 0.9rem;
    }
    
    .nav-brand .logo {
        height: 45px;
        max-width: 180px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .nav-contact {
        gap: 0.5rem;
    }
    
    .contact-info {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
        gap: 0.3rem;
        border-radius: 15px;
    }
    
    .contact-info i {
        font-size: 0.8rem;
    }
    
    .nav-brand .logo {
        height: 40px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .nav-contact {
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    
    .contact-info {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        gap: 0.3rem;
        border-radius: 15px;
        white-space: nowrap;
    }
    
    .contact-info span {
        font-size: 0.65rem;
    }
    
    .contact-info i {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
    
    .nav-brand .logo {
        height: 35px;
        max-width: 140px;
    }
}

@media (max-width: 400px) {
    .navbar .container {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .nav-contact {
        gap: 0.8rem;
        justify-content: center;
    }
    
    .contact-info {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
    
    .contact-info span {
        font-size: 0.7rem;
    }
    
    .nav-brand .logo {
        height: 35px;
        max-width: 140px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}