@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --main-color: #3867d6;
    --secondary-color: #E80022;
    --gold-color: #FFD700;
    --dark-bg: #222;
    --card-bg: #333;
    --text-light: #fff;
    --text-gray: #eee;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.4);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-royal: linear-gradient(135deg, #8e44ad 0%, #c0392b 100%);
}

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .3s ease;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

section {
    padding: 5rem 9%;
}

/* ULTRA FAST PRELOADER - 0.5 SECONDS */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeOut 0.3s ease 0.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.preloader .loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Floating Buttons */
.whatsapp-float, .call-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    animation: pulse 2s infinite;
}

.call-float {
    bottom: 110px;
    background: var(--main-color);
    box-shadow: 0 5px 25px rgba(56, 103, 214, 0.5);
}

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

.whatsapp-float:hover, .call-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 200px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(232, 0, 34, 0.5);
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(232, 0, 34, 0.7);
}

/* Headings */
.heading {
    text-align: center;
    padding-bottom: 2rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 4.5rem;
    letter-spacing: 2px;
    position: relative;
}

.heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--main-color);
    border-radius: 2px;
}

.heading span {
    color: var(--main-color);
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 1.2rem 3.5rem;
    font-size: 1.7rem;
    border-radius: 50px;
    background: var(--main-color);
    color: var(--text-light);
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(56, 103, 214, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(56, 103, 214, 0.6);
}

.btn-primary {
    background: var(--main-color);
}

.btn-secondary {
    background: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(232, 0, 34, 0.4);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Scrollbar */
html::-webkit-scrollbar {
    width: 1.2rem;
}

html::-webkit-scrollbar-track {
    background: var(--card-bg);
}

html::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 5rem;
}

html::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(51, 51, 51, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header .logo {
    font-weight: bolder;
    color: var(--text-light);
    font-size: 2.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header .logo span {
    color: var(--main-color);
}

.header .navbar a {
    font-size: 1.7rem;
    color: var(--text-light);
    margin-left: 2.5rem;
    position: relative;
    font-weight: 500;
}

.header .navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--main-color);
    transition: width 0.3s;
}

.header .navbar a:hover::after,
.header .navbar a.active::after {
    width: 100%;
}

.header .navbar a:hover,
.header .navbar a.active {
    color: var(--main-color);
}

#menu-bars {
    font-size: 3rem;
    color: var(--text-light);
    cursor: pointer;
    display: none;
}

/* Home Section */
.home {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding-top: 10rem;
    overflow: hidden;
}

.home-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(56, 103, 214, 0.1), transparent);
    pointer-events: none;
}

.home .content {
    flex: 1;
    text-align: center;
    z-index: 1;
}

.home .content .badge-top {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    letter-spacing: 1px;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.home .content h3 {
    color: var(--text-light);
    font-size: 5rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.home .content h3 span {
    color: var(--main-color);
    text-transform: uppercase;
    display: block;
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home .content .tagline {
    font-size: 2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.home .content .btn-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home .stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.home .stats-container .stat-box {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.home .stats-container .stat-box h4 {
    font-size: 4rem;
    color: var(--main-color);
    font-weight: bold;
}

.home .stats-container .stat-box p {
    font-size: 1.6rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.home .home-slider {
    flex: 1;
}

.home .home-slider .swiper-slide {
    overflow: hidden;
    border-radius: 20px;
    height: 55rem;
    width: 38rem;
    position: relative;
    box-shadow: var(--shadow);
}

.home .home-slider .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.home .home-slider .swiper-slide:hover img {
    transform: scale(1.1);
}

.home .home-slider .swiper-slide .slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem;
}

.home .home-slider .swiper-slide .slide-overlay h4 {
    color: white;
    font-size: 2rem;
    text-align: center;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
    padding: 3rem 9%;
    background: var(--card-bg);
}

.features .feature-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--dark-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.features .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(56, 103, 214, 0.3);
}

.features .feature-box i {
    font-size: 5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.features .feature-box h3 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.features .feature-box p {
    font-size: 1.6rem;
    color: var(--text-gray);
}

/* About Section */
.about {
    background: var(--dark-bg);
}

.about .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.about .row .image {
    flex: 1 1 45rem;
    position: relative;
}

.about .row .image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 5px solid var(--card-bg);
}

.about .row .image .image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--gradient-1);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
}

.about .row .image .image-badge i {
    font-size: 2.5rem;
}

.about .row .image .image-badge span {
    font-size: 1.6rem;
    font-weight: 600;
}

.about .row .content {
    flex: 1 1 45rem;
}

.about .row .content h3 {
    font-size: 3.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.about .row .content .highlight {
    font-size: 1.8rem;
    color: var(--text-light);
    background: rgba(56, 103, 214, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid var(--main-color);
    margin-bottom: 2rem;
}

.about .row .content p {
    font-size: 1.6rem;
    color: var(--text-gray);
    padding: 1rem 0;
    line-height: 2;
}

.about .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.about .about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.about .about-feature-item i {
    color: var(--main-color);
    font-size: 2rem;
}

.about .about-feature-item span {
    color: var(--text-light);
    font-size: 1.5rem;
}

.about .quote {
    font-size: 2rem;
    color: var(--gold-color);
    font-style: italic;
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
}

/* AWARDS & ACHIEVEMENTS SECTION - 2 ROWS, 4 CARDS EACH */
.awards-section {
    background: var(--card-bg);
}

.box-container-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.box-container-gallery .box {
    position: relative;
    border-radius: 15px;
    height: 30rem;
    cursor: pointer;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--dark-bg);
}

.box-container-gallery .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.9;
}

.box-container-gallery .box:hover img {
    transform: scale(1.2);
    opacity: 1;
}

.box-container-gallery .box .title {
    position: absolute;
    top: -10rem;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold-color), #FFA500);
    color: var(--dark-bg);
    text-align: center;
    padding: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    transition: top 0.3s;
}

.box-container-gallery .box:hover .title {
    top: 0;
}

.box-container-gallery .box .icons {
    position: absolute;
    bottom: -10rem;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    text-align: center;
    transition: bottom 0.3s;
}

.box-container-gallery .box:hover .icons {
    bottom: 0;
}

.box-container-gallery .box .icons a {
    font-size: 2.5rem;
    margin: 0 1.5rem;
    color: var(--gold-color);
}

.box-container-gallery .box .icons a:hover {
    color: white;
    transform: scale(1.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 5rem;
    font-weight: bold;
    cursor: pointer;
}

.close-lightbox:hover {
    color: var(--main-color);
}

/* Interactive Panels */
.panels {
    min-height: 70vh;
    overflow: hidden;
    display: flex;
    margin-top: 5rem;
    cursor: pointer;
    border-radius: 15px;
}

.panel {
    background: #6B0F9C;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    align-items: center;
    transition: all 0.7s cubic-bezier(0.61, -0.19, 0.7, -0.11);
    font-size: 20px;
    background-size: cover;
    background-position: center;
    flex: 1;
    justify-content: center;
    display: flex;
    flex-direction: column;
    position: relative;
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.panel:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.panel1 { background-image: url("../images1/y1.jpg"); }
.panel2 { background-image: url("../images1/y2.jpg"); }
.panel3 { background-image: url("../images1/y3.jpg"); }
.panel4 { background-image: url("../images1/y4.jpg"); }
.panel5 { background-image: url("../images1/y5.jpg"); }

.panel > * {
    margin: 0;
    width: 100%;
    transition: transform 0.5s;
    flex: 1 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.panel > *:first-child {
    transform: translateY(-100%);
}

.panel.open-active > *:first-child {
    transform: translateY(0);
}

.panel > *:last-child {
    transform: translateY(100%);
}

.panel.open-active > *:last-child {
    transform: translateY(0);
}

.panel p {
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    font-size: 2.5rem;
    font-weight: bold;
}

.panel.open {
    flex: 5;
    font-size: 40px;
}

/* =============================================
   CLEAN & PROFESSIONAL PRICE SECTION
   ============================================= */
.price {
    background: var(--dark-bg);
}

.price-wrapper {
    max-width: 140rem;
    margin: 0 auto;
}

.box-container-price {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* CLEAN PACKAGE DESIGN */
.box-clean {
    padding: 3.5rem 2.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.box-clean:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(56, 103, 214, 0.4);
    border-color: var(--main-color);
}

.box-clean.box-featured {
    background: linear-gradient(135deg, rgba(56, 103, 214, 0.1), rgba(232, 0, 34, 0.1));
    border: 2px solid var(--main-color);
}

.box-clean.box-royal {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border: 2px solid var(--gold-color);
}

.box-clean .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--main-color);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(56, 103, 214, 0.4);
}

.box-clean .badge-featured {
    background: var(--secondary-color);
}

.box-clean .badge-royal {
    background: var(--gold-color);
    color: var(--dark-bg);
}

.box-clean .package-header {
    margin-bottom: 2.5rem;
}

.box-clean .package-icon {
    font-size: 5rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
    display: block;
}

.box-clean.box-featured .package-icon {
    color: var(--secondary-color);
}

.box-clean.box-royal .package-icon {
    color: var(--gold-color);
}

.box-clean .title {
    font-size: 2.6rem;
    color: var(--text-light);
    font-weight: bold;
    margin-bottom: 0;
}

.box-clean .price-display {
    margin: 2.5rem 0;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-top: 2px solid var(--main-color);
    border-bottom: 2px solid var(--main-color);
}

.box-clean.box-featured .price-display {
    border-color: var(--secondary-color);
}

.box-clean.box-royal .price-display {
    border-color: var(--gold-color);
}

.box-clean .amount {
    color: var(--main-color);
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

.box-clean.box-featured .amount {
    color: var(--secondary-color);
}

.box-clean.box-royal .amount {
    color: var(--gold-color);
}

.box-clean .amount span {
    font-size: 1.8rem;
    color: var(--text-gray);
    font-weight: normal;
}

.box-clean .features-list {
    list-style-type: none;
    padding: 2rem 0;
    text-align: left;
    margin: 0;
}

.box-clean .features-list li {
    font-size: 1.5rem;
    color: var(--text-gray);
    padding: 1.2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.5;
}

.box-clean .features-list li i {
    color: var(--main-color);
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.box-clean.box-featured .features-list li i {
    color: var(--secondary-color);
}

.box-clean.box-royal .features-list li i {
    color: var(--gold-color);
}

.box-clean .btn-book {
    width: 100%;
    margin-top: 2.5rem;
    padding: 1.4rem 2rem;
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--main-color);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(56, 103, 214, 0.4);
    transition: all 0.3s;
}

.box-clean .btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(56, 103, 214, 0.6);
}

.box-clean.box-featured .btn-book {
    background: var(--secondary-color);
}

.box-clean.box-royal .btn-book {
    background: var(--gold-color);
    color: var(--dark-bg);
}

.box-clean .btn-book i {
    font-size: 2rem;
}

/* Pricing Info Section */
.pricing-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
    padding-top: 5rem;
    border-top: 2px solid var(--card-bg);
}

.pricing-info .info-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    transition: all 0.3s;
}

.pricing-info .info-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.pricing-info .info-box i {
    font-size: 5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.pricing-info .info-box h4 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-info .info-box p {
    font-size: 1.6rem;
    color: var(--text-gray);
}

/* Review Section */
.reivew {
    background: var(--card-bg);
}

.reivew .box {
    border-radius: 20px;
    background: var(--dark-bg);
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow);
}

.reivew .box .rating {
    margin-bottom: 1.5rem;
}

.reivew .box .rating i {
    color: var(--gold-color);
    font-size: 1.8rem;
    margin-right: 0.3rem;
}

.reivew .box .fa-quote-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--main-color);
    font-size: 6rem;
    opacity: 0.3;
}

.reivew .box .user {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
}

.reivew .box .user img {
    height: 8rem;
    width: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--main-color);
}

.reivew .box .user h3 {
    font-size: 2.2rem;
    color: var(--text-light);
}

.reivew .box .user span {
    font-size: 1.5rem;
    color: var(--main-color);
}

.reivew .box p {
    line-height: 2;
    color: var(--text-gray);
    padding: 1rem 0;
    font-size: 1.6rem;
}

/* Instagram Section */
.instagram-section {
    text-align: center;
    margin: 5rem 0;
    padding: 4rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 20px;
}

.instagram-section h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.instagram-section p {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Banner Section */
.banner-section {
    margin: 5rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.banner-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.contact-card {
    background: var(--card-bg);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(56, 103, 214, 0.3);
}

.contact-card i {
    font-size: 5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}

.contact-card h3 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-card a {
    display: block;
    font-size: 1.8rem;
    color: var(--text-gray);
    margin: 1rem 0;
}

.contact-card a:hover {
    color: var(--main-color);
}

.contact-card p {
    font-size: 1.6rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* EXPANDED WHATSAPP SECTION */
.whatsapp-contact-section-expanded {
    margin: 5rem 0;
    padding: 0;
}

.whatsapp-expanded-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, #d8ffe9 0%, #b8f5d9 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3);
    min-height: 450px;
}

.whatsapp-content-left {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #25D366 0%, #1ebc57 100%);
    color: white;
}

.whatsapp-icon-large {
    font-size: 8rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-content-left h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.whatsapp-content-left > p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.95;
}

.whatsapp-features {
    list-style: none;
    padding: 0;
}

.whatsapp-features li {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.whatsapp-features li i {
    font-size: 2.2rem;
    color: #d8ffe9;
}

.whatsapp-content-right {
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.whatsapp-action-card {
    text-align: center;
    width: 100%;
}

.whatsapp-action-card h3 {
    font-size: 3.5rem;
    color: #222;
    margin-bottom: 2rem;
    font-weight: 700;
}

.whatsapp-action-card > p {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.whatsapp-button-large {
    display: inline-block;
    background: linear-gradient(to right, #25D366, #1ebc57);
    color: white;
    padding: 2rem 5rem;
    border-radius: 50px;
    font-size: 2.2rem;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    margin-bottom: 3rem;
}

.whatsapp-button-large:hover {
    background: linear-gradient(to right, #1ebc57, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-button-large i {
    margin-right: 1rem;
    font-size: 2.5rem;
}

.contact-numbers {
    margin-top: 2rem;
}

.contact-numbers p {
    font-size: 1.8rem;
    color: #555;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-numbers i {
    color: var(--main-color);
    font-size: 2rem;
}

/* Footer */
.footer {
    background: #111;
    padding-top: 5rem;
}

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.6rem;
    padding: 1rem 0;
    color: var(--text-gray);
    transition: all 0.3s;
}

.footer .box-container .box a i {
    padding-right: 1rem;
    color: var(--main-color);
}

.footer .box-container .box a:hover {
    padding-left: 1rem;
    color: var(--main-color);
}

.footer .credit {
    text-align: center;
    border-top: 0.1rem solid #333;
    color: var(--text-light);
    padding: 3rem;
    margin-top: 3rem;
    font-size: 2rem;
}

.footer .credit span {
    color: var(--main-color);
}

/* Theme Toggler */
.theme-toggler {
    position: fixed;
    top: 10rem;
    right: -22rem;
    background: var(--card-bg);
    z-index: 10000;
    width: 22rem;
    text-align: center;
    border-radius: 10px 0 0 10px;
    box-shadow: var(--shadow);
    transition: right 0.3s;
}

.theme-toggler.active {
    right: 0;
}

.theme-toggler h3 {
    color: var(--text-light);
    padding: 2rem 0;
    font-size: 2rem;
}

.theme-toggler .buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
}

.theme-toggler .buttons .theme-btn {
    height: 5.5rem;
    width: 5.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.theme-toggler .buttons .theme-btn:hover {
    transform: scale(1.2);
}

.theme-toggler .toggle-btn {
    position: absolute;
    top: 0;
    left: -6.5rem;
    padding: 1.5rem 1.8rem;
    background: var(--card-bg);
    cursor: pointer;
    border-radius: 10px 0 0 10px;
}

.theme-toggler .toggle-btn i {
    color: var(--text-light);
    font-size: 3rem;
    animation: spin 4s linear infinite;
}
