/* Responsive images and tap targets */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a, button, .btn, .quick-btn, .footer-social a {
    min-height: 48px;
    min-width: 48px;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

@media (pointer: coarse) {
    .btn, .quick-btn, .footer-social a {
        margin-bottom: 10px;
    }
}
/* GALLERY IMAGE & VIDEO STYLES */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.2s;
}

.gallery-video {
    width: 100% !important;
    height: auto !important;
    max-height: 350px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15) !important;
}
.lightbox-modal {
    display: none;
}
.lightbox-modal.active {
    display: flex !important;
}
.lightbox-modal[style*="display: flex"] {
    display: flex !important;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
    margin-bottom: 18px;
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #FFD93D;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
    outline: none;
    transition: color 0.2s;
}
.lightbox-close:focus,
.lightbox-close:hover {
    color: #fff200;
}
.lightbox-caption {
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    max-width: 90vw;
    word-break: break-word;
    margin-bottom: 10px;
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    cursor: pointer;
    outline: none;
    border: 2px solid transparent;
    display: block;
    background: #222;
    margin-bottom: 0;
}
.gallery-img:focus {
    border: 2px solid #FFD93D;
    box-shadow: 0 0 0 3px rgba(255,217,61,0.18);
}
.gallery-video-item {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232323;
    border-radius: 15px;
    padding: 8px;
}
.gallery-video {
    width: 100%;
    border-radius: 10px;
    max-height: 400px;
    background: #000;
}
@media (max-width: 900px) {
    .gallery-video-item {
        grid-column: span 1;
    }
    .gallery-video {
        max-height: 250px;
    }
}
/* ==========================================
   GOLU BALLOON DECORATION - STYLESHEET
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================
   ROOT & GENERAL STYLES
   ========================================== */

:root {
    --primary-color: #FFD93D;
    --secondary-color: #FFC107;
    --accent-color: #FFE082;
    --dark-bg: #1A1A1A;
    --light-bg: #2D2D2D;
    --text-dark: #FFFFFF;
    --text-light: #E0E0E0;
    --border-color: #444444;
    --success-color: #4CAF50;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #1A1A1A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 0.8rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: #1A1A1A;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #1A1A1A;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 10px 18px;
    border-radius: 6px;
    display: inline-block;
    font-size: 0.95rem;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B9D, #FF1493);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    background-color: rgba(26, 26, 26, 0.08);
    transform: translateY(-2px);
    color: #FF6B9D;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a.active {
    background-color: rgba(26, 26, 26, 0.05);
    font-weight: 700;
    color: #1A1A1A;
}

.btn-contact {
    background: linear-gradient(135deg, #FF6B9D 0%, #FF1493 100%);
    color: white !important;
    padding: 11px 24px !important;
    border-radius: 25px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    transition: var(--transition);
    border: none;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #FF1493 0%, #FF6B9D 100%);
}

.btn-contact::before {
    display: none !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.service-item i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.service-item p {
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0;
    color: var(--accent-color);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #FFD93D;
}

.phone-contact {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.phone-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-hero-section {
    background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    border-top: 3px solid #FFD93D;
    border-bottom: 3px solid #FFD93D;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD93D;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.cta-actions {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-large {
    padding: 16px 45px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    color: #1A1A1A !important;
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.3);
}

.btn-primary.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 217, 61, 0.4);
}

.btn-cta-secondary {
    background: transparent !important;
    color: #FFFFFF !important;
    border: 2.5px solid #FFFFFF;
    padding: 13px 42px !important;
}

.btn-cta-secondary.btn-large {
    font-size: 1.1rem !important;
    border: 2.5px solid #FFFFFF;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: #FFFFFF !important;
    color: #1A1A1A !important;
    transform: translateY(-4px);
}

.cta-phone-box {
    background: rgba(60, 60, 60, 0.8);
    border: 2px solid #FFD93D;
    border-radius: 50px;
    padding: 18px 35px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.cta-phone-box i {
    color: #FFD93D;
    font-size: 1.5rem;
}

.cta-phone-box strong {
    color: #FFD93D;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 217, 61, 0.2);
    }
}

/* ==========================================
   PAGE SECTION & GENERAL CONTENT
   ========================================== */

.page-section {
    padding: 80px 0;
    background-color: #1A1A1A;
}

.page-section:nth-child(even) {
    background-color: #252525;
}

.page-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: #FFD93D;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFD93D, #FFC107);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 50px;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #FFD93D;
    margin: 30px 0 20px;
    font-weight: 700;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    color: #FFD93D;
    font-weight: 600;
    margin-bottom: 20px;
}

.description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #2D2D2D;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border-left: 5px solid #FFD93D;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #FFD93D;
    margin-bottom: 15px;
    display: block;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.service-card p {
    color: #E0E0E0;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    color: #1A1A1A;
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    text-align: center;
}

.highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.highlight-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==========================================
   PACKAGES SECTION
   ========================================== */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.package-card {
    background: #2D2D2D;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border-top: 5px solid #FFD93D;
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
}

.package-card.featured {
    transform: scale(1.05);
    border-top-color: #FFD93D;
    box-shadow: 0 15px 40px rgba(255, 217, 61, 0.2);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-header {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    color: #1A1A1A;
    padding: 25px;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #1A1A1A;
}

.package-features {
    list-style: none;
    padding: 25px;
    flex-grow: 1;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #444444;
    display: flex;
    align-items: center;
    color: #E0E0E0;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    margin-right: 12px;
    color: #4CAF50;
    font-weight: bold;
}

.package-desc {
    padding: 0 25px;
    color: #E0E0E0;
    font-style: italic;
    font-size: 0.95rem;
}

.package-card .btn {
    margin: 25px;
    align-self: center;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: #2D2D2D;
    border-radius: 15px;
    margin-top: 50px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #FFFFFF;
}

.cta-section a {
    color: #FFD93D;
    text-decoration: none;
    font-weight: 600;
}

/* ==========================================
   THEMES SECTION
   ========================================== */

.themes-container {
    margin: 50px 0;
}

.themes-heading {
    font-size: 1.8rem;
    color: #FFD93D;
    margin: 40px 0 30px;
    text-align: center;
    font-weight: 700;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.theme-card {
    background: #2D2D2D;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid transparent;
    color: #FFFFFF;
}

.theme-card:hover {
    transform: translateY(-10px);
    border-color: #FFD93D;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.theme-card i {
    font-size: 3rem;
    color: #FFD93D;
    margin-bottom: 15px;
    display: block;
}

.theme-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.theme-card p {
    color: #E0E0E0;
    font-size: 0.95rem;
}

.custom-themes {
    text-align: center;
    margin-top: 50px;
}

.custom-themes .btn {
    margin-top: 20px;
}

/* ==========================================
   ENTERTAINMENT SECTION
   ========================================== */

.entertainment-category {
    margin: 60px 0;
}

.entertainment-heading {
    font-size: 1.8rem;
    color: #FFD93D;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.entertainment-heading i {
    margin-right: 15px;
    color: #FFD93D;
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.entertainment-card {
    background: #2D2D2D;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    color: #FFFFFF;
}

.entertainment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.entertainment-card i {
    font-size: 3rem;
    color: #FFD93D;
    margin-bottom: 15px;
    display: block;
}

.entertainment-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.entertainment-card p {
    color: #E0E0E0;
    font-size: 0.95rem;
}

/* ==========================================
   PORTFOLIO SECTION
   ========================================== */

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.stat-card {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    color: #1A1A1A;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    font-weight: 600;
}

.portfolio-heading {
    font-size: 1.8rem;
    color: #FFD93D;
    text-align: center;
    margin: 50px 0 30px;
    font-weight: 700;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px 18px;
    margin: 40px 0;
}

.portfolio-item {
    background: #2D2D2D;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
@media (max-width: 768px) {
    .gallery-img {
        height: 140px;
    }
    .lightbox-content {
        max-width: 98vw;
        max-height: 60vh;
    }
    .lightbox-close {
        top: 18px;
        right: 18px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-img {
        height: 90px;
    }
    .lightbox-content {
        max-width: 99vw;
        max-height: 40vh;
    }
    .lightbox-caption {
        font-size: 0.95rem;
    }
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: #FFD93D;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.portfolio-image {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
}

.portfolio-item h4 {
    font-size: 1.3rem;
    padding: 20px 20px 10px;
    color: #FFFFFF;
}

.portfolio-item p {
    padding: 0 20px 20px;
    color: #E0E0E0;
    line-height: 1.6;
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}

.portfolio-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.portfolio-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* ==========================================
   WHY US SECTION
   ========================================== */

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.why-us-card {
    background: #2D2D2D;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    color: #FFFFFF;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1A1A1A;
    font-size: 2.5rem;
}

.why-us-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.why-us-card p {
    color: #E0E0E0;
    line-height: 1.7;
}

.comparison-section {
    margin: 60px 0;
}

.comparison-section h3 {
    font-size: 1.8rem;
    text-align: center;
    color: #FFD93D;
    margin-bottom: 40px;
    font-weight: 700;
}

.comparison-table {
    background: #2D2D2D;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #444444;
}

.comparison-row.header {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    color: #1A1A1A;
    font-weight: 700;
}

.comparison-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.comparison-row:hover {
    background-color: #333333;
}

.icon-check {
    color: var(--success-color);
    font-weight: bold;
}

.icon-x {
    color: #E74C3C;
    font-weight: bold;
}

.testimonials-section {
    margin: 60px 0;
}

.testimonials-section h3 {
    font-size: 1.8rem;
    text-align: center;
    color: #FFD93D;
    margin-bottom: 40px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #2D2D2D;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border-left: 5px solid #FFD93D;
    color: #FFFFFF;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    color: #E0E0E0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #FFD93D !important;
    font-style: italic;
}

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    color: #1A1A1A;
    margin-top: 60px;
    padding: 50px !important;
}

.final-cta h3 {
    color: #1A1A1A;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.final-cta p {
    color: #333333;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.info-card {
    background: #2D2D2D;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid #FFD93D;
    color: #FFFFFF;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 2.5rem;
    color: #FFD93D;
    margin-bottom: 15px;
    display: block;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.info-card p {
    color: #E0E0E0;
}

.info-desc {
    font-size: 0.95rem;
    font-style: italic;
}

.contact-form-section h3 {
    font-size: 1.5rem;
    color: #FFD93D;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    background: #2D2D2D;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFFFFF;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #444444;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #3D3D3D;
    color: #FFFFFF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD93D;
    box-shadow: 0 0 0 3px rgba(255, 217, 61, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    background: #3D3D3D;
    padding: 20px;
    border-radius: 8px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    color: #FFFFFF;
}

.checkbox-group label:last-child {
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #FFD93D;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.quick-contact {
    background: #2D2D2D;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.quick-contact h3 {
    font-size: 1.5rem;
    color: #FFD93D;
    margin-bottom: 30px;
    font-weight: 700;
}

.quick-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #3D3D3D;
    color: #FFD93D;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.quick-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    color: #1A1A1A;
    padding: 60px 0 0;
    margin-top: 80px;
    position: relative;
    border-top: 4px solid #333333;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding: 50px 0 40px;
    border-bottom: 2px solid rgba(51, 51, 51, 0.3);
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-tagline {
    font-weight: 600;
    color: #333333;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Section Styles */
.footer-section {
    padding: 10px 0;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333333;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(51, 51, 51, 0.2);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    width: 16px;
    text-align: center;
}

.footer-links a:hover {
    color: #1A1A1A;
    padding-left: 8px;
    font-weight: 600;
}

/* Contact Info */
.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    color: #333333;
    margin: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p i {
    width: 16px;
    color: #333333;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(51, 51, 51, 0.15);
    border-radius: 50%;
    color: #333333;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background-color: #333333;
    color: #FFD93D;
    transform: translateY(-3px);
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(51, 51, 51, 0.1);
    padding: 40px;
    text-align: center;
    border-bottom: 2px solid rgba(51, 51, 51, 0.3);
}

.footer-newsletter h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333333;
}

.footer-newsletter p {
    color: #333333;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #333333;
    border-radius: 5px;
    background: white;
    color: #333333;
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #1A1A1A;
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.15);
}

.btn-subscribe {
    padding: 12px 24px;
    background-color: #333333;
    color: #FFD93D;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-subscribe:hover {
    background-color: #1A1A1A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 51, 51, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-bottom-content p {
    color: #333333;
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links-bottom a:hover {
    color: #1A1A1A;
    text-decoration: underline;
}

.separator {
    color: #333333;
    opacity: 0.5;
}

.footer-copyright {
    text-align: center;
    color: #333333;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #333333;
    color: #FFD93D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: #1A1A1A;
    transform: translateY(-5px);
}

/* Show back to top button on scroll */
body.show-back-to-top .back-to-top {
    opacity: 1;
    visibility: visible;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        gap: 30px;
        padding: 40px 0 30px;
    }

    .footer-newsletter {
        padding: 30px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .btn-subscribe {
        width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.9rem;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .nav-menu a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-item {
        padding: 15px;
    }

    .packages-grid,
    .themes-grid,
    .entertainment-grid,
    .portfolio-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .contact-form {
        padding: 25px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .hero {
        padding: 50px 0;
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-card h3 {
        font-size: 1.8rem;
    }

    .quick-options {
        flex-direction: column;
    }

    .quick-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-section > .container > * {
    animation: slideIn 0.6s ease;
}

/* ==========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ========================================== */

/* ========== TABLET & MEDIUM DEVICES (1024px and below) ========== */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .nav-menu a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 70px 0;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* ========== TABLETS (768px and below) ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-wrapper {
        position: relative;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        margin: 0;
        z-index: 999;
        border-bottom: 4px solid #333333;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 15px 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    }

    .btn-contact {
        margin: 10px 20px;
        border-radius: 25px;
    }

    .hero {
        min-height: 450px;
        padding: 50px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-item {
        padding: 20px 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-top {
        gap: 30px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .quick-options {
        flex-direction: column;
    }

    .quick-btn {
        width: 100%;
    }
}

/* ========== MOBILE DEVICES (480px and below) ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-img {
        height: 50px;
    }

    .hamburger {
        width: 28px;
        height: 22px;
    }

    .hamburger span {
        height: 2.5px;
    }

    .nav-menu {
        top: calc(100% + 1px);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .hero {
        min-height: 380px;
        padding: 40px 0;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-item {
        padding: 15px 10px;
    }

    .service-item i {
        font-size: 2rem;
    }

    .service-item p {
        font-size: 0.85rem;
    }

    .cta-buttons {
        gap: 12px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .phone-contact {
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .page-section {
        padding: 30px 0;
    }

    .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 0 20px;
    }

    .footer-logo-section {
        text-align: center;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 12px;
        justify-content: center;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer-newsletter {
        padding: 25px 15px;
    }

    .footer-newsletter h4 {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-form input,
    .btn-subscribe {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom-content p {
        font-size: 0.8rem;
    }

    .footer-links-bottom {
        font-size: 0.75rem;
        gap: 8px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 12px;
        right: 12px;
        font-size: 1rem;
    }

    .stat-card {
        padding: 18px 12px;
    }

    .stat-card h3 {
        font-size: 1.6rem;
    }

    .stat-card p {
        font-size: 0.8rem;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h4 {
        font-size: 1.05rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    .quick-options {
        gap: 12px;
    }

    .quick-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* ========== SMALL MOBILE DEVICES (360px and below) ========== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .logo-img {
        height: 45px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.8rem;
    }

    .page-title {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .nav-menu a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 350px;
    }

    .footer-top {
        gap: 15px;
    }

    .newsletter-form {
        gap: 6px;
    }
}

/* ========== TOUCH-FRIENDLY & ACCESSIBILITY ========== */
@media (hover: none) {
    .btn {
        min-height: 48px;
        padding: 14px 20px;
    }

    .nav-menu a {
        min-height: 44px;
        padding: 12px 16px;
    }

    .back-to-top {
        min-width: 48px;
        min-height: 48px;
    }
}
