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

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ffed4e;
    transform: scale(1.05);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-menu a:hover {
    color: #ffd700;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.phone {
    display: flex;
    align-items: center;
    color: #ffd700;
    font-weight: 600;
}

.phone i {
    margin-right: 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.7), rgba(255, 237, 78, 0.5));
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: #000;
    max-width: 600px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

.btn-primary {
    display: inline-block;
    background: #000;
    color: #ffd700;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.6s both;
    border: 2px solid #ffd700;
}

.btn-primary:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.prev-btn, .next-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 215, 0, 0.8);
    color: #000;
    transform: scale(1.1);
    border-color: #ffd700;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

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

/* About Section */
.about {
    padding: 5rem 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

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

/* Call to Action Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.cta-phone {
    flex-shrink: 0;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #000;
    color: #ffd700;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #000;
}

.phone-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.phone-btn i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

/* Map Section */
.map-section {
    padding: 8rem 0;
    background: #f8f9fa;
}

.map-container {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-right: 1rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-item p a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-item p a:hover {
    color: #ffed4e;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    overflow-x: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    height: 250px;
    cursor: pointer;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    position: relative;
    z-index: 2;
    background: transparent;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    padding: 2rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    z-index: 1;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000;
}

.gallery-placeholder h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.gallery-placeholder p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #ffed4e;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* Footer Contact Info Styles */
.footer .contact-info p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer .contact-info p i {
    color: #ffd700;
    font-size: 1rem;
    width: 16px;
}

.footer .contact-info p a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .contact-info p a:hover {
    color: #ffed4e;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    visibility: visible;
    opacity: 1;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Mobile WhatsApp Button */
.mobile-whatsapp-btn {
    display: none;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 60px;
    background: #25d366 !important;
    color: white !important;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 99999 !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
}

.mobile-whatsapp-btn i {
    font-size: 1.5rem;
}

.mobile-whatsapp-btn span {
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile First Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-wrapper {
        padding: 0.8rem 0;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    /* Show mobile WhatsApp button on tablets */
    .mobile-whatsapp-btn {
        display: flex !important;
        z-index: 99999 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #25d366 !important;
        color: white !important;
    }
    
    .whatsapp-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-wrapper {
        padding: 0.7rem 0;
        flex-wrap: wrap;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        backdrop-filter: blur(10px);
        display: flex;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0.1rem 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu li:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -0.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 1px;
        background: linear-gradient(90deg, transparent, #ffd700, transparent);
        opacity: 0.3;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
        display: flex;
        align-items: center;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
.nav-menu a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: #ffd700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        color: #000;
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }
    
.nav-menu a:hover i {
    color: #000;
    transform: scale(1.1);
}

/* Desktop menü için özel spacing */
@media (min-width: 769px) {
    .nav-menu a {
        gap: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .nav-menu a i {
        font-size: 1.2rem;
        width: 24px;
    }
}
    
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
        font-size: 1.3rem;
        padding: 0.5rem;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        background: none;
        border: none;
        color: #333;
    }
    
    .phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
        font-size: 1.3rem;
        padding: 0.5rem;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        background: none;
        border: none;
        color: #333;
    }
    
    /* Desktop'ta sadece header'da telefon numarası */
    @media (min-width: 769px) {
        .phone {
            display: flex;
            align-items: center;
            color: #ffd700;
            font-weight: 600;
        }
        
        .mobile-menu-toggle {
            display: none;
        }
    }
    
    /* Hero Slider Mobile */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .slide-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
        z-index: 10;
    }
    
    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.6);
        border: 2px solid rgba(255, 255, 255, 0.9);
        z-index: 11;
    }
    
    .slider-dots {
        bottom: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Services Mobile */
    .services {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .phone-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .phone-btn i {
        font-size: 1.3rem;
    }

    /* Map Section Mobile */
    .map-section {
        padding: 3rem 0;
    }
    
    .map-container {
        margin-bottom: 2rem;
        border-radius: 10px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    /* Gallery Mobile */
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin: 0;
        padding: 0;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .gallery-placeholder {
        padding: 1rem;
    }
    
    .gallery-placeholder i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .gallery-placeholder h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .gallery-placeholder p {
        font-size: 0.8rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-section:first-child {
        text-align: center;
    }
    
    .footer-section:first-child .logo {
        justify-content: center;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .footer-section:last-child {
        text-align: center;
    }
    
    .footer-section:last-child .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-section:last-child .contact-info p {
        justify-content: center;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #ffd700;
        font-weight: 600;
    }
    
    .footer-section ul {
        margin-top: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
        color: #bdc3c7;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: #ffd700;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #bdc3c7;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: #ffd700;
        color: #000;
        transform: translateY(-2px);
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #34495e;
        font-size: 0.9rem;
    }
    
    /* WhatsApp Button Mobile */
    .whatsapp-btn {
        display: none;
    }
    
    .mobile-whatsapp-btn {
        display: flex !important;
        z-index: 99999 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #25d366 !important;
        color: white !important;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .nav-wrapper {
        padding: 0.6rem 0;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    .mobile-menu-toggle {
        font-size: 1.2rem;
    }
    
    /* Hero Mobile Small */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        background: rgba(0, 0, 0, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.9);
        z-index: 11;
    }
    
    .slider-dots {
        bottom: 1rem;
        gap: 0.8rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Services Small Mobile */
    .services {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .service-card {
        padding: 1.2rem;
        margin: 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Gallery Small Mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        margin: 0;
        padding: 0;
    }
    
    .gallery-item {
        height: 160px;
    }
    
    .gallery-placeholder {
        padding: 0.8rem;
    }
    
    .gallery-placeholder i {
        font-size: 1.8rem;
    }
    
    .gallery-placeholder h3 {
        font-size: 0.9rem;
    }
    
    .gallery-placeholder p {
        font-size: 0.75rem;
    }
    
    /* CTA Small Mobile */
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 0.9rem;
    }
    
    .phone-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .phone-btn i {
        font-size: 1.2rem;
    }

    /* Map Small Mobile */
    .map-container iframe {
        height: 250px;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .social-links {
        margin-top: 1.2rem;
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        margin-top: 1.2rem;
        padding-top: 1.2rem;
        font-size: 0.85rem;
    }
    
    /* WhatsApp Small Mobile */
    .whatsapp-btn {
        display: none;
    }
    
    .mobile-whatsapp-btn {
        display: flex !important;
        height: 55px;
        font-size: 1.1rem;
        z-index: 99999 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #25d366 !important;
        color: white !important;
    }
    
    .mobile-whatsapp-btn i {
        font-size: 1.3rem;
    }
    
    .mobile-whatsapp-btn span {
        font-size: 0.9rem;
    }
    
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin: 0;
        padding: 0;
    }
    
    .gallery-item {
        height: 140px;
    }
    
    /* WhatsApp Button Landscape */
    .whatsapp-btn {
        display: none;
    }
    
    .mobile-whatsapp-btn {
        display: flex !important;
        height: 50px;
        font-size: 1rem;
        z-index: 99999 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #25d366 !important;
        color: white !important;
    }
    
    .mobile-whatsapp-btn i {
        font-size: 1.2rem;
    }
    
    .mobile-whatsapp-btn span {
        font-size: 0.8rem;
    }
}
