/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

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

img {
    max-width: 100%;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffa500, #ff6600);
}

.logo {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 1px;
    color: #ffa500;
}

/* Navigation */
.navigation {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 15px;
    margin-left: auto;
}

.menu-toggle svg {
    display: block;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: block;
    padding: 1.2rem 2.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffa500);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffa500;
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link.active {
    background: linear-gradient(135deg, #ff6600 0%, #ff8c00 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.nav-link.active::before {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 8rem 0; /* İçeriğin çevresine daha fazla boşluk verdik */
    text-align: center;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

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

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity;
    animation: heroSlideAnim 30s infinite;
}

/* 5 görselli animasyon, her biri 6s arayla geçiş yapar */
.hero-slider .slide-1 { 
    background-image: url('public/animasyon/gorsel-1.jpg'); 
    animation-delay: 0s; 
}
.hero-slider .slide-2 { 
    background-image: url('public/animasyon/gorsel-2.jpg'); 
    animation-delay: 6s; 
}
.hero-slider .slide-3 { 
    background-image: url('public/animasyon/gorsel-3.jpg'); 
    animation-delay: 12s; 
}
.hero-slider .slide-4 { 
    background-image: url('public/animasyon/gorsel-4.jpg'); 
    animation-delay: 18s; 
}
.hero-slider .slide-5 { 
    background-image: url('public/animasyon/gorsel-5.jpg'); 
    animation-delay: 24s; 
}

@keyframes heroSlideAnim {
    0% { opacity: 0; }
    8% { opacity: 1; }
    20% { opacity: 1; }
    28% { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.75) 0%, rgba(26, 26, 46, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    color: #ffa500;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: 7rem 0 5rem 0; /* Hizmetlerimiz başlığı biraz daha aşağıya kaydırıldı */
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ffa500);
    border-radius: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff6600, #ffa500);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
    border-color: #ffa500;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
    transition: transform 0.3s ease;
}

.service-img {
    height: 64px;
    vertical-align: middle;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-placeholder::before {
    width: 250%;
    height: 250%;
}

.gallery-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.2);
    opacity: 1;
}

.gallery-placeholder p {
    color: #ffa500;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-btn-container {
    text-align: center;
    margin-top: 3.5rem;
}

.show-more-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.show-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.show-more-btn:hover::before {
    transform: translateX(100%);
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    background: linear-gradient(135deg, #ff6600 0%, #ffa500 100%);
}

/* About Section */
.about {
    background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
    padding: 0 0 5rem 0;
}

.about-stats-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 2.5rem 0;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.about-stats-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffa500, #ff6600);
}

.about-stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffa500, #ff6600);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.about-stat {
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffa500;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.about-stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.about-subtitle {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-subtitle span {
    color: #ff6600;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-quote {
    border-left: 4px solid #ff6600;
    background: linear-gradient(135deg, #fff3e6 0%, #fff8f0 100%);
    padding: 1.2rem 1.5rem;
    margin: 2rem 0 0 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.05rem;
    color: #cc5200;
    line-height: 1.7;
}

.about-features-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #ff6600;
    display: inline-block;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: white;
    border-radius: 12px;
    padding: 1.1rem 1rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.15);
    border-color: #ffa500;
}

.about-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: linear-gradient(135deg, #ff6600, #ffa500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
}

.about-feature-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.2rem;
}

.about-feature-card span {
    font-size: 0.8rem;
    color: #777;
}

.about-cta {
    margin-top: 4rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ffa500, #ff6600);
}

.about-cta-text h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffa500;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.about-cta-text p {
    color: #ccc;
    font-size: 1.05rem;
    margin: 0;
}

.about-cta-text strong {
    color: white;
}

.about-cta-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 165, 0, 0.35);
    border-radius: 20px;
    padding: 1rem 2rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.about-cta-badge span {
    color: #ffb732;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
    border-color: #ffa500;
}

.contact-card.special {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-card.special::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 1rem;
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffa500);
}

.contact-card.special h3 {
    color: white;
}

.contact-card.special h3::after {
    background: linear-gradient(90deg, #ffa500, #ffb732);
}

.contact-item {
    position: relative;
    text-align: left;
    padding-left: 3rem;
    margin: 0 auto 1.5rem;
    width: fit-content;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.contact-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-card.special .contact-item strong {
    color: white;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffa500;
    text-decoration: underline;
}

.contact-card.special .contact-item a {
    color: #ffa500;
    font-weight: 700;
}

.contact-card.special .contact-item a:hover {
    color: #ffb732;
}

.address-placeholder {
    color: #999;
    font-style: italic;
    font-size: 1rem;
}

/* Special contact cards layout */

/* Social Media Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #111, #1a1a2e);
}

.social-platform-name {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.social-link svg {
    width: 28px;
    height: 28px;
    opacity: 0.95;
}

.social-handle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6600, #ffa500, #ff6600);
}

.footer p {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 2.5rem;
    }

    .about-cta-badge {
        white-space: normal;
        text-align: center;
        flex-shrink: 1;
    }

    .about-main {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 1rem;
    }

    .nav-container {
        display: flex;
        justify-content: flex-end;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1rem;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .hero {
        padding: 3.5rem 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 0;
    }

    .about-stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .about-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .about-cta-badge {
        white-space: normal;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        min-width: 100%;
        max-width: 400px;
        padding: 1.8rem 2.5rem;
    }

    .social-link svg {
        width: 48px;
        height: 48px;
    }

    .social-title {
        font-size: 1.8rem;
    }

    .social-subtitle {
        font-size: 1rem;
    }

    .social-name {
        font-size: 1.2rem;
    }

    .service-card p {
        text-align: left;
    }

    .services {
        padding: 4rem 0 3rem;
    }

    .gallery {
        padding: 3rem 0;
    }

    .contact {
        padding: 3rem 0;
    }

    .about-stats-bar {
        margin-bottom: 3rem;
    }

    .about-stat-number {
        font-size: 1.9rem;
    }

    .about-stat-label {
        font-size: 0.78rem;
        letter-spacing: 0.5px;
    }

    .about-main {
        margin-top: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }

    .about-features-title {
        letter-spacing: 0.5px;
    }

    .show-more-btn {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .contact-card {
        padding: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .social-links {
        flex-direction: row;
        gap: 0.5rem;
    }

    .social-link {
        width: auto;
        flex: 1;
        max-width: 100%;
        padding: 1rem;
        min-width: auto;
        gap: 0.4rem;
    }

    .social-content {
        gap: 1rem;
    }

    .social-link svg {
        width: 32px;
        height: 32px;
    }

    .social-name {
        font-size: 1.1rem;
    }

    .social-handle {
        font-size: 0.9rem;
    }

    .social-link::after {
        right: 1rem;
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .about-stat-number {
        font-size: 1.6rem;
    }

    .about-stat-label {
        font-size: 0.72rem;
        letter-spacing: 0;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .show-more-btn {
        max-width: 100%;
        padding: 0.9rem 1.5rem;
    }

    .about-cta {
        padding: 1.8rem 1.2rem;
    }

    .about-cta-text h3 {
        font-size: 1.4rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0px 5px 20px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Phone Floating Button */
.phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px; /* WhatsApp the above */
    right: 30px;
    background-color: #007bff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.phone-float:hover {
    background-color: #0056b3;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0px 5px 20px rgba(0, 123, 255, 0.4);
    color: #FFF;
}

@media (max-width: 768px) {
    .phone-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 20px;
    }
    .phone-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 170px; /* Phone the above */
    right: 30px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #e65c00;
    transform: translateY(-5px);
    box-shadow: 0px 5px 20px rgba(255, 102, 0, 0.4);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        width: 50px;
        height: 50px;
        bottom: 140px; /* mobil phone butonu üzerinde */
        right: 20px;
    }
    
    .scroll-top-btn svg {
        width: 24px;
        height: 24px;
    }
}

