:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #7dd3fc;
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
    --white: #ffffff;
    --light: #f0f9ff;
    --dark: #0f172a;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --gradient: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    --gradient-yellow: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
    --shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
    --shadow-lg: 0 25px 50px rgba(14, 165, 233, 0.25);
    --font: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-yellow {
    color: var(--secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font);
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    padding: 12px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-cta {
    padding: 12px 24px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}


/* ========================================
   DESKTOP SLIDER (Hidden on Mobile)
   ======================================== */
.desktop-slider {
    display: block;
}

.mobile-slider {
    display: none;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: relative;
}

.slide-bg img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   MOBILE SLIDER (Hidden on Desktop)
   ======================================== */
.slider-container-mobile {
    position: relative;
    width: 100%;
}

.slide-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide-mobile.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.slide-bg-mobile {
    position: relative;
}

.slide-bg-mobile img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Slider Controls */
.slider-controls-mobile {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 20;
    pointer-events: none;
}

.slider-btn-mobile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.slider-btn-mobile:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-btn-mobile svg {
    stroke: currentColor;
}

/* Mobile Slider Dots */
.slider-dots-mobile {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot-mobile {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-mobile:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot-mobile.active {
    background: var(--secondary);
    width: 28px;
    border-radius: 8px;
}

/* Responsive: Show Mobile Slider, Hide Desktop Slider */
@media (max-width: 768px) {
    .desktop-slider {
        display: none;
    }

    .mobile-slider {
        display: block;
        margin-top: 70px;
    }
}


.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.slide-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-content>p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.discount-badge {
    display: inline-block;
    background: var(--gradient-yellow);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.discount-badge span {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
}

.service-badge {
    display: inline-block;
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.service-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.service-badge.hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.service-badge.hot span {
    color: var(--white);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.slide-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 20;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--secondary);
    width: 35px;
    border-radius: 10px;
}

/* Hero Info Bar */
.hero-info-bar {
    position: relative;
    background: var(--white);
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px;
    z-index: 20;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 500;
}

.info-item i {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Service Pricing Styles */
.service-pricing {
    background: var(--light);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.pricing-label i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.pricing-value {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.pricing-value.original-price {
    text-decoration: line-through;
    color: #dc2626;
    opacity: 0.7;
}

.pricing-value.discount-badge {
    background: var(--gradient-yellow);
    color: var(--dark);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-value.final-price {
    color: #16a34a;
    font-size: 1.1rem;
    font-weight: 800;
}

.services-more {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
}

.services-more p {
    color: var(--gray);
}

.services-more strong {
    color: var(--primary);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--gradient);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: var(--light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.package-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.05);
    z-index: 1;
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.package-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-price {
    margin-bottom: 30px;
}

.package-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.package-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-card.featured .package-features li {
    border-color: rgba(255, 255, 255, 0.2);
}

.package-features i {
    width: 20px;
    height: 20px;
    color: var(--secondary);
}

.package-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
}

.about-img-secondary img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gradient-yellow);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.about-content .section-tag {
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content>p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-card>p {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info .section-tag {
    margin-bottom: 15px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-info>p {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark);
}

.contact-item p {
    color: var(--gray);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 40px;
    border-radius: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-contact i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ============================================
   NEW PAGES STYLES
   ============================================ */

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: var(--gradient);
    text-align: center;
    color: var(--white);
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-hero .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Services Page */
.services-page {
    padding: 80px 0;
}

.services-page .service-card {
    display: flex;
    flex-direction: column;
}

.services-page .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-page .service-pricing {
    flex: 1;
}

.services-page .btn-block {
    margin-top: 15px;
}

/* About Story Section */
.about-story {
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-story-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Why Choose Us / Features Grid */
.why-choose-us {
    padding: 80px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-box i {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info>p {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-card-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-card-content p,
.contact-card-content a {
    color: var(--gray);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-card-content a:hover {
    color: var(--primary);
}

.contact-page .contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-item h4 i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
    padding-left: 36px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(30, 136, 229, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}


/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.call-btn {
    background: var(--primary);
}

.whatsapp-btn {
    background: #25D366;
}

.floating-btn i {
    width: 26px;
    height: 26px;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text>p {
        margin: 0 auto 30px;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-cards {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .package-card.featured {
        transform: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        order: -1;
    }

    .about-img-secondary {
        right: 20px;
        bottom: -20px;
        width: 180px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-links ul {
        padding: 0;
    }

    /* New Pages Responsive */
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-step::after {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content>p {
        font-size: 0.95rem;
    }

    .hero-info-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 15px;
    }

    .info-item {
        flex: 1 1 45%;
        justify-content: center;
        font-size: 0.85rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn i {
        width: 20px;
        height: 20px;
    }

    .slider-dots {
        bottom: 90px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: auto;
        min-height: unset;
    }

    .slider-container {
        position: relative;
        height: auto;
    }

    .slide {
        position: relative;
        height: auto;
    }

    .slide:not(.active) {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .slide-bg {
        position: relative;
        inset: unset;
        height: auto;
    }

    .slide-bg img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .slider-dots {
        bottom: 15px;
    }

    .hero-info-bar {
        position: relative;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 10px;
    }

    .info-item {
        flex-direction: column;
        flex: 1 1 40%;
        text-align: center;
        gap: 5px;
        font-size: 0.75rem;
    }

    .info-item span {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .info-item i {
        width: 24px;
        height: 24px;
    }

    /* Smaller floating buttons on mobile */
    .floating-buttons {
        bottom: 20px !important;
        right: 15px !important;
        gap: 10px !important;
    }

    .floating-btn {
        width: 42px !important;
        height: 42px !important;
    }

    .floating-btn i {
        width: 20px !important;
        height: 20px !important;
    }

    /* New Pages Mobile */
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h4 {
        font-size: 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-story-image .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .experience-badge .exp-number {
        font-size: 2rem;
    }
}