/* ============================================
   NUEVO DISEÑO MODERNO - DYM ENTRETENCIONES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #00D4D4;
    --primary-dark: #00a8a8;
    --secondary: #FF006B;
    --accent: #FF006B;
    --light-gray: #F5F5F5;
    --dark-gray: #000000;
    --text-light: #555555;
    --border-light: #e5e7eb;
    --white: #ffffff;
    --cyan: #00D4D4;
    --magenta: #FF006B;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #555555;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====== NAVIGATION ====== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 999;
    box-shadow: none;
    padding: 12px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: transparent;
    box-shadow: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--cyan);
}

.navbar.scrolled .logo {
    color: var(--dark-gray);
}

.logo-img {
    height: 45px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--cyan);
}

.navbar.scrolled .nav-menu a {
    color: var(--dark-gray);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-gray);
    cursor: pointer;
}

/* ====== BUTTONS ====== */
.btn {
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: 0;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--magenta);
}

.btn-secondary:hover {
    background: var(--magenta);
    color: var(--white);
    transform: translateY(-2px);
}

/* ====== HERO SECTION ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,76,117,0.6), rgba(10,46,82,0.55));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    color: var(--white);
    max-width: 100%;
    padding: 0 40px;
}

.hero-pretitle {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.95;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-slogan {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.hero-description {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ====== SECTION HEADERS ====== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 15%, #00CED1 30%, #1E90FF 50%, #FFB347 75%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none;
    animation: gradientShift 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-header p {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.section-header p strong {
    color: var(--cyan);
    font-weight: 700;
}

/* ====== ABOUT SECTION ====== */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 15%, #00CED1 30%, #1E90FF 50%, #FFB347 75%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: gradientShift 6s ease infinite;
    background-size: 200% 200%;
}

.about-lead {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--cyan);
}

.about-text p {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-cards {
    display: grid;
    gap: 16px;
    margin: 32px 0;
}

.about-card {
    background: var(--white);
    padding: 24px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.about-card h4 {
    color: var(--cyan);
    margin-bottom: 8px;
    font-size: 16px;
}

.about-card p {
    font-size: 14px;
    margin: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 600;
}

.about-image img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
    height: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-video {
    width: 100%;
    border-radius: 0;
    height: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

/* ====== SERVICES SECTION ====== */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.service-card:hover {
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 280px;
    margin-bottom: 24px;
    border-radius: 0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
    filter: grayscale(100%);
}

.service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
    filter: grayscale(100%);
}

.service-card:hover .service-image img,
.service-card:hover .service-image video {
    filter: grayscale(0%);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark-gray);
}

.service-tagline {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px !important;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.features-list li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--primary);
    font-size: 16px;
}

.service-card h4 {
    margin: 20px 0 12px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
}

.applications-list {
    list-style: none;
    padding: 0;
}

.applications-list li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 14px;
}

/* ====== EVENTS SECTION ====== */
.events {
    padding: 100px 0;
    background: var(--white);
}

.events-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.event-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border-top-color: var(--cyan);
}

.event-icon {
    font-size: 48px;
    color: var(--magenta);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.event-card:hover .event-icon {
    transform: scale(1.2) rotate(-10deg);
}

.event-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.event-list li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.event-list li .dot {
    color: var(--cyan);
    margin-right: 10px;
    font-size: 18px;
}

.event-list li:hover {
    color: var(--cyan);
    font-weight: 600;
    padding-left: 5px;
}

/* ====== GALLERY CAROUSEL SECTION ====== */
.gallery-carousel {
    padding: 100px 0;
    background: var(--light-gray);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-btn {
    background: linear-gradient(135deg, var(--cyan) 0%, #0099CC 100%);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,212,212,0.3);
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,212,212,0.4);
}

.carousel-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
    height: 6px;
}

.carousel-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: var(--cyan);
    border-radius: 10px;
}

.carousel-container::-webkit-scrollbar-thumb:hover {
    background: #0099CC;
}

.carousel-slide {
    flex: 0 0 280px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,212,212,0.2);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ====== BENEFITS SECTION ====== */
.benefits {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit {
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    font-size: 40px;
    color: var(--cyan);
    margin-bottom: 16px;
}

.benefit h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.benefit p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ====== PACKAGES SECTION ====== */
.packages {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid #e0e0e0;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.package-card.featured {
    border-top-color: var(--cyan);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0,212,212,0.2);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,212,212,0.3);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, var(--cyan) 0%, #0099CC 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 8px;
}

.package-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}

.package-duration {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.package-price {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0,212,212,0.05) 0%, rgba(0,212,212,0.02) 100%);
    border-radius: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--cyan);
    font-family: 'Montserrat', sans-serif;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.package-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--cyan);
    font-size: 16px;
    flex-shrink: 0;
}

.package-card .btn {
    width: 100%;
    margin-top: 12px;
}

/* Packages Subtitles and Combos */
.packages-subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 48px 0 24px 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.packages-subtitle:first-of-type {
    margin-top: 0;
}

.packages-subtitle i {
    color: var(--cyan);
}

.packages-combo-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.combos-grid {
    max-width: 800px;
}

.combo-card .package-features li i.fa-gift {
    color: #e74c3c;
}

/* Packages Info Section */
.packages-info {
    margin-top: 64px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 40px;
    color: var(--white);
}

.packages-info h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.packages-info h3 i {
    color: var(--cyan);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.info-item-pkg {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item-pkg:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.info-item-pkg > i {
    font-size: 24px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item-pkg strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.info-item-pkg p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.5;
}

/* ====== PORTFOLIO SECTION ====== */
.portfolio {
    padding: 100px 0;
    background: var(--light-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.portfolio-item {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    group: "portfolio";
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-item:hover img {
    filter: grayscale(0%);
}

.portfolio-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.portfolio-item h4,
.portfolio-item p {
    padding: 12px 16px;
    background: var(--white);
}

.portfolio-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.portfolio-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    padding: 0 16px 12px;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 28px;
    border-radius: 0;
    border-left: 4px solid var(--magenta);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 12px;
    font-size: 14px;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    font-size: 14px;
}

.author-role {
    color: var(--text-light);
    font-size: 12px;
    margin: 0;
}

/* ====== FAQ SECTION ====== */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-item.active {
    box-shadow: 0 8px 20px rgba(0, 212, 212, 0.2);
    border-color: var(--cyan);
}

.faq-button {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}

.faq-item.active .faq-button {
    background: linear-gradient(135deg, rgba(0, 212, 212, 0.05) 0%, rgba(0, 212, 212, 0.02) 100%);
    border-left-color: var(--cyan);
}

.faq-button:hover {
    background: linear-gradient(135deg, rgba(0, 212, 212, 0.03) 0%, rgba(0, 212, 212, 0.01) 100%);
}

.faq-button h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.faq-item.active .faq-button h4 {
    color: var(--cyan);
}

.faq-button:hover h4 {
    color: var(--cyan);
}

.faq-button i {
    color: var(--cyan);
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-item.active .faq-button i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--white);
}

.faq-item.active .faq-content {
    max-height: 400px;
}

.faq-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    padding: 0 24px 24px 24px;
    font-weight: 400;
}

/* ====== CONTACT SECTION ====== */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
    color: var(--dark-gray);
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: #00CED1;
    box-shadow: 0 4px 8px rgba(0,212,212,0.1);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 6px 16px rgba(0,212,212,0.2);
    background: linear-gradient(135deg, rgba(0,212,212,0.02) 0%, rgba(0,212,212,0.01) 100%);
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-form button {
    margin-top: 8px;
    background: linear-gradient(135deg, #00CED1 0%, #0099CC 100%);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,212,212,0.3);
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,212,212,0.4);
}

.contact-info {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f9ff 100%);
    padding: 28px;
    border-radius: 8px;
    border-left: 5px solid var(--cyan);
    box-shadow: 0 4px 12px rgba(0,212,212,0.15);
}

.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.info-item i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
}

.info-item .label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    margin: 0;
}

.info-item p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: var(--dark-gray);
}

.social-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 0;
    color: var(--cyan);
    transition: all 0.3s;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--magenta);
    color: var(--white);
    transform: translateY(-2px);
}

/* ====== FOOTER ====== */
.footer {
    background: var(--dark-gray);
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.portfolio-item {
    animation: scaleIn 0.5s ease-out;
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Link hover effect */
a {
    position: relative;
}

.contact-info a,
.footer-section a {
    color: var(--cyan);
}

.contact-info a:hover,
.footer-section a:hover {
    color: var(--magenta);
}

/* Input focus effect */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--cyan);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 212, 0.1);
}

/* ====== WHATSAPP BUTTON ====== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    z-index: 998;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}