* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-5deg) scale(0.95);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes smoothFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes subtleScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmerText {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes expandHeight {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

@keyframes collapseHeight {
    from {
        max-height: 500px;
        opacity: 1;
    }
    to {
        max-height: 0;
        opacity: 0;
    }
}

:root {
    --primary-yellow: #FFD700;
    --primary-black: #1a1a1a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h2 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--primary-black) 100%);
    color: var(--white);
    overflow-x: hidden;
    touch-action: pan-y;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
    height: 3.5rem;
    animation: slideInDown 0.6s ease-out;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-box {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-weight: bold;
    font-size: 1rem;
}

@media (max-width: 640px) {
    .logo-box {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }
}

.logo-text h1 {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--white);
}

@media (max-width: 640px) {
    .logo-text h1 {
        font-size: 1rem;
    }
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

@media (max-width: 640px) {
    .logo-text p {
        font-size: 0.65rem;
    }
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary-yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #20ba5a);
}

.social-icon.whatsapp-icon:hover {
    background: linear-gradient(135deg, #20ba5a, #1a9d4a);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.social-icon.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram-icon:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 148, 51, 0.5);
}

.social-icon.facebook-icon {
    background: linear-gradient(135deg, #1877F2, #0A66C2);
}

.social-icon.facebook-icon:hover {
    background: linear-gradient(135deg, #0A66C2, #054399);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.5);
}

.social-icon.youtube-icon {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.social-icon.youtube-icon:hover {
    background: linear-gradient(135deg, #CC0000, #990000);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 1.5rem;
    height: 0.2rem;
    background: var(--white);
    border-radius: 0.1rem;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 3.5rem;
    right: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.98);
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    z-index: 40;
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

@media (max-width: 640px) {
    .mobile-menu {
        gap: 0.75rem;
        padding: 1rem;
    }
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background 0.2s;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

@media (max-width: 640px) {
    .mobile-menu a {
        padding: 0.65rem;
        font-size: 0.9rem;
    }
}

.mobile-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
}

.mobile-menu .btn-whatsapp {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 0.625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
    color: var(--primary-black);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24, var(--primary-yellow));
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    animation: slideInUp 0.6s ease-out backwards;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a, #1a9d4a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-whatsapp-dark {
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-dark:hover {
    background: linear-gradient(135deg, #20ba5a, #1a9d4a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-dark svg {
    width: 22px;
    height: 22px;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2.5px solid var(--primary-yellow);
    text-decoration: none;
    display: inline-flex;
    font-weight: 700;
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}



.btn-service {
    background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
    color: var(--primary-black);
    width: 100%;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.btn-service:hover {
    background: linear-gradient(135deg, #fbbf24, var(--primary-yellow));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.35);
}

.btn-dark {
    background: linear-gradient(135deg, var(--primary-black), var(--gray-800));
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
    background: linear-gradient(135deg, var(--gray-800), var(--primary-black));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn-light {
    background: var(--white);
    color: var(--primary-black);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.6), rgba(26, 26, 26, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-left {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 9999px;
    color: var(--primary-yellow);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out, glow 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    background: linear-gradient(135deg, var(--white), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-yellow {
    color: var(--primary-yellow);
}

.text-white {
    color: var(--white);
}

.text-black {
    color: var(--primary-black);
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.font-bold {
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-yellow);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* About Section */
.about {
    padding: 2rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.about-left h2 {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 0.8s ease-out;
    background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-left p {
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }
}

.feature {
    display: flex;
    gap: 1rem;
    animation: fadeInLeft 0.6s ease-out backwards;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateX(5px);
}

.feature:nth-child(1) { animation-delay: 0.3s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.5s; }
.feature:nth-child(4) { animation-delay: 0.6s; }

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 0 auto;
    max-width: 500px;
}

.gallery-grid .gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out backwards;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
}

.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.2s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.3s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.4s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.5s; }

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
    display: block;
    animation: scaleIn 0.6s ease-out backwards;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-img:nth-child(1) { animation-delay: 0.2s; }
.gallery-img:nth-child(2) { animation-delay: 0.3s; }
.gallery-img:nth-child(3) { animation-delay: 0.4s; }
.gallery-img:nth-child(4) { animation-delay: 0.5s; }

.gallery-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.gallery-img[src=""],
.gallery-img:not([src]) {
    display: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-yellow), #fbbf24, var(--primary-yellow));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.section-header p {
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    color: var(--primary-black);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform, box-shadow;
    animation: slideInUp 0.6s ease-out backwards;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card::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;
    z-index: 1;
}

@media (min-width: 768px) {
    .service-card {
        padding: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    animation: none;
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800));
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-img[src=""],
.service-img:not([src]) {
    display: none;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    flex-grow: 1;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.features-list li:before {
    content: "•";
    color: var(--primary-yellow);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-card .btn-service {
    margin-top: auto;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-yellow), #fbbf24);
    color: var(--primary-black);
    padding: 2rem 0;
}

.contact .section-header p {
    color: var(--gray-800);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-item {
    text-align: center;
    animation: fadeInUp 0.6s ease-out backwards;
    transition: all 0.3s ease;
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    z-index: -1;
}

.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.3s; }
.contact-item:nth-child(3) { animation-delay: 0.4s; }

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .contact-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .contact-buttons .btn {
        flex: 1;
        min-width: 200px;
    }
}

/* Footer */
.footer {
    background: var(--gray-900);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(55, 65, 81, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-yellow);
}

.footer-col a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(55, 65, 81, 0.3);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-links {
        justify-content: flex-start;
    }
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Gallery Lightbox */
.gallery-container {
    display: none;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: fadeInUp 0.3s ease-out;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 70vw;
    max-height: 70vh;
    animation: scaleIn 0.3s ease-out;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--white);
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }

    .lightbox-content {
        max-width: 85vw;
        max-height: 60vh;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .services-grid {
        display: none;
    }

    .service-card {
        display: none;
    }

    .services .mobile-services-menu {
        display: flex;
        flex-direction: column;
        position: static;
        background: transparent;
        z-index: auto;
        max-height: 500px;
        overflow: visible;
        animation: slideInUp 0.3s ease-out;
        margin-bottom: 2rem;
        transition: none;
        gap: 0;
    }

    #mobileServicesToggle span:last-child {
        transition: transform 0.3s ease;
        display: inline-block;
    }

    #mobileServicesToggle.active span:last-child {
        transform: rotate(180deg);
    }

    /* Mobil menü içinde hizmetler menüsü */
    .mobile-menu .mobile-services-menu {
        display: none;
        margin: 0;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(255, 215, 0, 0.1);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu .mobile-services-menu.active {
        display: flex;
        max-height: 500px;
        animation: expandHeight 0.3s ease;
    }

    .mobile-menu .mobile-service-item {
        padding: 0.75rem 0.5rem;
        margin-bottom: 0.25rem;
        background: transparent;
        border-radius: 0;
        border-bottom: none;
        animation: slideInUp 0.3s ease-out backwards;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 0.9rem;
    }

    .mobile-menu .mobile-service-item span {
        width: 100%;
        display: block;
    }

    .mobile-menu .mobile-service-item::after {
        content: '';
        display: none;
    }

    .mobile-menu .mobile-service-item:hover {
        background: rgba(255, 215, 0, 0.05);
        padding-left: 1rem;
    }

    .mobile-menu .mobile-service-item:hover::after {
        transform: none;
    }

    .mobile-menu .mobile-service-item:nth-child(1) { animation-delay: 0.05s; }
    .mobile-menu .mobile-service-item:nth-child(2) { animation-delay: 0.1s; }
    .mobile-menu .mobile-service-item:nth-child(3) { animation-delay: 0.15s; }
    .mobile-menu .mobile-service-item:nth-child(4) { animation-delay: 0.2s; }
    .mobile-menu .mobile-service-item:nth-child(5) { animation-delay: 0.25s; }

    /* Hizmetler bölümündeki mobil menü */
    .services .mobile-services-menu .mobile-service-item {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        color: var(--white);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: all 0.3s ease;
        animation: slideInUp 0.3s ease-out backwards;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .services .mobile-services-menu .mobile-service-item span {
        width: 100%;
        display: block;
    }

    .services .mobile-services-menu .mobile-service-item:hover {
        background: rgba(255, 215, 0, 0.08);
        padding-left: 1.5rem;
    }

    .services .mobile-services-menu .mobile-service-item::after {
        content: '';
        display: none;
    }

    .services .mobile-services-menu .mobile-service-item:hover::after {
        transform: none;
    }

    .services .mobile-services-menu .mobile-service-item:nth-child(1) { animation-delay: 0.05s; }
    .services .mobile-services-menu .mobile-service-item:nth-child(2) { animation-delay: 0.1s; }
    .services .mobile-services-menu .mobile-service-item:nth-child(3) { animation-delay: 0.15s; }
    .services .mobile-services-menu .mobile-service-item:nth-child(4) { animation-delay: 0.2s; }
    .services .mobile-services-menu .mobile-service-item:nth-child(5) { animation-delay: 0.25s; }

    .social-icons {
        gap: 0.3rem;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .btn-primary {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }

    .btn-whatsapp {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .btn-whatsapp svg {
        width: 18px;
        height: 18px;
    }

    .btn-whatsapp-dark,
    .btn-light {
        width: 100%;
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-whatsapp-dark svg,
    .btn-light svg {
        width: 20px;
        height: 20px;
    }

    .hero {
        padding: 1.5rem 0;
        min-height: auto;
        margin-top: 3.5rem;
    }

    .hero-left {
        text-align: center;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: clamp(0.875rem, 2vw, 1rem);
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stats {
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .about {
        padding: 1.5rem 0;
    }

    .about-grid {
        gap: 1.5rem;
    }

    .about-left h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }

    .about-left p {
        font-size: clamp(0.875rem, 2vw, 0.95rem);
        margin-bottom: 1.5rem;
    }

    .features {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .feature-icon {
        font-size: 1.25rem;
    }

    .feature h4 {
        font-size: 0.875rem;
    }

    .feature p {
        font-size: 0.75rem;
    }

    .gallery-grid {
        gap: 0rem 0.1rem;
    }

    .gallery-grid .gallery-item {
        width: 150px;
        height: 150px;
        margin: 0;
    }

    .gallery-img {
        width: 150px;
        height: 150px;
    }

    .services {
        padding: 1.5rem 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: clamp(0.875rem, 2vw, 0.95rem);
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.4rem;
    }

    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .service-img {
        height: 200px;
        margin-bottom: 0.75rem;
    }

    .features-list li {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .contact {
        padding: 1.5rem 0;
    }

    .contact-info {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-icon {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }

    .contact-item h4 {
        font-size: 0.95rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-col ul li {
        margin-bottom: 0.4rem;
    }

    .footer-col a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}
