/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: hsl(270, 95%, 75%);
    --accent: hsl(280, 100%, 70%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(224, 71%, 4%);
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(220, 8%, 46%);
    --card: hsl(0, 0%, 100%);
    --border: hsl(220, 13%, 91%);
    --gradient-primary: linear-gradient(135deg, hsl(270, 95%, 75%), hsl(280, 100%, 70%));
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: white;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    background: black;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Transform to "X" when active */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
    margin-top: 7rem;
}

.hero-title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title-cost{
    font-size: 4.5rem;

}

.highlight {
    color: var(--primary);
    font-size: 3rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.hero-text {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-3d-tour {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.section-header-3d-tour h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(128, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.service-card p {
    color: var(--muted-foreground);
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--gradient-primary);
    position: relative;
    color: white;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(128, 0, 255, 0.9), rgba(147, 51, 234, 0.9));
}

.stats .container {
    position: relative;
    z-index: 10;
}

.stats .section-header h2,
.stats .section-header p {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--foreground);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.05), rgba(147, 51, 234, 0.05));
}

.badge {
    display: inline-block;
    background: rgba(128, 0, 255, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--card);
    border: 2px solid rgba(128, 0, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.discount-badge {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.pricing-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.old-price {
    font-size: 1.5rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.payment-note {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.pricing-content {
    padding: 2rem;
}

.features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(128, 0, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.included-section {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.included-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.included-list {
    display: grid;
    gap: 0.5rem;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.included-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.cta-section {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.cta-button {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(128, 0, 255, 0.3);
}

.offer-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .old-price {
        font-size: 1.25rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .testimonial-card,
    .pricing-content {
        padding: 1.5rem;
    }
}

.collage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1.5fr));
    gap: 10px;
  }
  .collage img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
  }


  .gallery-section {
    margin-top: 80px;
  }
  
  .collage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1.2fr));
    gap: 15px;
  }
  
  .collage img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .collage img:hover {
    transform: scale(1.65);
  }
  

/* Base nav (desktop view) */
.nav {
    display: flex;
    gap: 1rem;
}

/* Mobile menu hidden by default */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background-color: white; /* optional */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .nav.show-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
        background: none;
        border: none;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background: black;
    }
}

/* Hide the mobile button on desktop */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}
