:root {
  --primary-color: #2c3e50;
  --accent-color: #e74c3c;
  --text-color: #2c3e50;
  --light-bg: #f8f9fa;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Montserrat', sans-serif;
}

#hero h1 {
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.nav-links a {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.why-card h3, .about-content h3, .plans-header h2 {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.feature-dropdown summary {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.price-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Update font weights for better readability on mobile */
@media screen and (max-width: 768px) {
    body {
        font-weight: 400;
    }
    
    h1, h2, h3, h4 {
        font-weight: 600;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;  /* Reduced padding */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    height: 60px;  /* Fixed height */
}

.nav-links a {
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
    animation: glowPulse 1s infinite;
}

/* Update logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0px;  /* Increased from 10px */
}

.logo-img {
    height: 50px;  /* Increased from 30px */
    width: auto;
}

.logo-text {
    font-size: 2.5rem;  /* Increased from 1.2rem */
    font-weight: bold;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    padding: 0.3rem 0.8rem;  /* Reduced padding */
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;  /* Smaller font */
}

#hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("images/header\ image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;  /* Parallax effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

/* Hero Form Styles */
.hero-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 350px;
    animation: slideInRight 0.5s ease-out;
    margin-left: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.form-wrapper {
    width: 100%;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #d63031;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsiveness for hero form */
@media screen and (max-width: 768px) {
    .hero-form {
        width: 100%;
        max-width: 400px;
        margin: 1rem auto;
        padding: 1.5rem;
    }

    .hero-form h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .submit-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsiveness */
@media screen and (max-width: 1024px) {
    .hero-overlay {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

    .hero-form {
        width: 100%;
        max-width: 400px;
    }
}

@media screen and (max-width: 480px) {
    .hero-form {
        padding: 1.5rem;
    }

    .hero-form h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .submit-btn {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: rotateIn 1s ease-out;
}

#hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    max-width: 800px;
}

.cta-button {
    padding: 1rem 2.5rem;
    margin-top: 2rem;
    background: var(--accent-color);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    transform-origin: center;
    transition: var(--transition);
    animation: glowPulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Reduced from 280px */
    gap: 1.5rem; /* Reduced from 2rem */
    padding: 1.5rem 5%;
    max-width: 1200px; /* Reduced from 1400px */
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px; /* Reduced from 15px */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 160px; /* Reduced from 200px */
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.service-card-content {
    padding: 1.2rem; /* Reduced from 1.5rem */
    text-align: left;
}

.service-card h3 {
    font-size: 1.1rem; /* Reduced from 1.3rem */
    margin-bottom: 0.6rem; /* Reduced from 0.8rem */
    position: relative;
    padding-bottom: 0.6rem; /* Reduced from 0.8rem */
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px; /* Reduced from 50px */
    height: 2px; /* Reduced from 3px */
    background: var(--accent-color);
}

.service-card p {
    color: #666;
    font-size: 0.85rem; /* Reduced from 0.95rem */
    line-height: 1.4;
    margin-bottom: 0.8rem; /* Reduced from 1rem */
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0; /* Reduced from 1rem */
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.8rem; /* Reduced from 0.9rem */
    margin-bottom: 0.4rem; /* Reduced from 0.5rem */
}

.service-features li i {
    color: var(--accent-color);
    font-size: 0.7rem; /* Reduced from 0.8rem */
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.8rem; /* Reduced from 0.9rem */
    text-decoration: none;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 0.8rem;
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Show 2 cards per row on mobile */
        padding: 1rem;
        gap: 1rem;
    }

    .service-card-content {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* Single column for very small screens */
    }
}

footer {
    background: linear-gradient(135deg, #fcfcfc, #fefefe);
    color: white;
    padding: 4rem 5%;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    color: green; /* Changed from pink to green */
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #000000; /* Changed from #ffffff to black */
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500; /* Added for better readability on dark background */
}

.footer-section.about p {
    text-align: justify;
    opacity: 1; /* Changed from 0.95 to 1 for better contrast */
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icon {
    color: inherit; /* Reset color */
    font-size: 1.8rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Updated social icons with default colors */
.fa-facebook {
    color: #4267B2;
}

.fa-instagram {
    color: #E1306C;
}

.fa-whatsapp {
    color: #25D366;
}

.fa-linkedin {
    color: #0077b5;
}

/* Add hover effect */
.social-icon:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

/* Updated hover colors for social icons */
.fa-facebook:hover { color: #4267B2; }
.fa-instagram:hover { color: #E1306C; }

.footer-section.contact p:hover {
    color: #000000; /* Changed hover color to black */
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Mobile responsiveness for footer */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-section.about p {
        text-align: center;
    }
}

/* Update these specific styles */
.mobile-menu-btn {
    display: none;
}

.video-section {
    padding: 2rem 0;
    overflow: hidden;
    background: #f5f5f5;
}

.video-section h2 {
    padding: 0 5%;
    margin-bottom: 1.5rem;
    text-align: center;
}

.video-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5%;
    -webkit-overflow-scrolling: touch;
}

.video-container::-webkit-scrollbar {
    display: none;  /* Hide scrollbar Chrome/Safari/Opera */
}

.video-item {
    position: relative;
    min-width: 280px;
    flex: 0 0 calc(33.333% - 10px);
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
}

.video-item:hover {
    transform: scale(1.05);
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button::after {
    content: '';
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.close-modal {
    position: absolute;
    right: -40px;
    top: -40px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}

/* About Section Styles */
#about {
    padding: 5rem 5%;
    background: #f9f9f9;
}

.about-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff6b6b;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Stats Animation Styles */
.stat {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat:nth-child(1) { animation-delay: 0.2s; }
.stat:nth-child(2) { animation-delay: 0.4s; }
.stat:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat h4 {
    display: inline-block;
    position: relative;
}

.stat h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b6b;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 0.6s ease forwards;
    animation-delay: 0.8s;
}

@keyframes lineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Why Dolly Builder Section */
#why-dolly {
    padding: 5rem 5%;
    background: #fff;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end);
}

.why-header h2 .highlight-text {
    color: #ff6b6b; /* Changed to pink color */
    display: inline-block;
}

.why-header h2 span.highlight-text,
.why-header h2 {
    color: #ff6b6b; /* Pink color for both "Dolly" and "Builder" */
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

/* Optional blinking cursor effect */
    animation: blink 0.75s step-end infinite;

@keyframes blink {
    from, to { opacity: 1 }
    50% { opacity: 0 }
}

/* Mobile responsiveness for typewriter */
@media screen and (max-width: 768px) {
    .why-header h2 {
        font-size: 1.8rem;
        white-space: normal;
    }
}

.why-header p {
    font-size: 1.2rem;
    color: #666;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideInFromRight 0.8s ease-out;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.why-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card h3 {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
#how-it-works {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.how-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.how-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Update How It Works section styles */
.timeline-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem; /* Reduced from 3rem */
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 32px; /* Reduced from 40px */
    height: 32px; /* Reduced from 40px */
    border-radius: 50%;
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem; /* Reduced from 1rem */
    font-size: 14px; /* Reduced from default */
}

.step-line {
    position: absolute;
    top: 16px; /* Adjusted to align with smaller circles */
    right: -50%;
    width: 100%;
    height: 2px;
    background: #ff6b6b;
    z-index: -1;
}

.step h3 {
    font-size: 0.9rem; /* Reduced from 1rem */
    color: #333;
    text-align: center;
    margin-top: 0.3rem; /* Reduced spacing */
}

.content-slider {
    height: 400px; /* Reduced height */
}

@media screen and (max-width: 768px) {
    .step-number {
        width: 28px; /* Even smaller on mobile */
        height: 28px;
        font-size: 12px;
    }

    .step-line {
        top: 14px;
    }

    .step h3 {
        font-size: 0.8rem;
    }
}

.timeline-content {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #fff;
}

.content-slider {
    position: relative;
    height: 520px; /* Increased height to accommodate margin */
}

.content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease;
    display: none;
    background: #fff;
}

.content-slide.active {
    opacity: 1;
    display: block;
}

.content-slide img {
    width: 100%;
    height: 400px; /* Increased height */
    object-fit: cover;
    display: block;
}

.content-slide[data-step="1"] img {
    object-position: center 30%; /* Adjust the vertical position */
    margin-top: 20px; /* Add some top margin */
}

.content-slide p {
    padding: 1.5rem;
    background: #fff;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    height: 100px; /* Fixed height for text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* New Plans Section Styles */
#plans {
    padding: 5rem 5%;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
}

.plans-header {
    text-align: center;
    margin-bottom: 4rem;
}

.plans-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.plans-header p {
    font-size: 1.3rem;
    color: #666;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.plans-grid[style*="display: none"] {
    opacity: 0;
}

.plan-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.plan-header {
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 2.5rem;
    color: #2ecc71;
    font-weight: 600;
    margin: 15px 0;
}

.price-note {
    color: #666;
    font-size: 0.9rem;
}

.feature-categories {
    padding: 30px;
}

.feature-dropdown {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.feature-dropdown summary {
    padding: 15px 20px;
    background: #f8f9fa;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-dropdown summary i {
    color: #2ecc71;
}

.feature-dropdown ul {
    padding: 15px 20px;
    list-style: none;
}

.feature-dropdown li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.feature-dropdown li:last-child {
    border-bottom: none;
}

.plan-actions {
    padding: 0 30px 30px;
    display: flex;
    gap: 15px;
}

.package-btn {
    flex: 2;
    padding: 12px;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.details-btn {
    flex: 1;
    padding: 12px;
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.package-notes {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-top: 50px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.benefits-list i {
    color: #2ecc71;
}

.disclaimer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .plan-header h3 {
        font-size: 1.5rem;
    }

    .price-tag {
        font-size: 2rem;
    }

    .feature-dropdown summary {
        padding: 12px 15px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .content-slider {
        height: 420px;
    }

    .content-slide img {
        height: 300px; /* Adjusted for mobile */
    }

    .content-slide p {
        height: 100px;
        padding: 1rem;
        font-size: 1rem;
    }

    .content-slide[data-step="1"] img {
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 0.5rem 2%;
        position: relative;
        height: 50px;  /* Even smaller on mobile */
        padding-top: 0;  /* Remove extra padding */
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 1rem;
        top: 0.6rem;
        z-index: 100;
        font-size: 1.8rem;
        color: var(--text-color);
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    #hero {
        height: 80vh;
        background-attachment: scroll;  /* Remove parallax on mobile */
    }

    #hero h1 {
        font-size: 2.8rem;
    }

    #hero p {
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 2rem 2%;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    footer {
        padding: 2rem 2%;
    }

    .video-section {
        padding: 1rem 0;
    }
    
    .video-container {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .video-item {
        flex: 0 0 calc(85% - 10px);
        min-width: 250px;
    }
    
    .thumbnail {
        border-radius: 6px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-button::after {
        border-left: 12px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .close-modal {
        right: 0;
        top: -40px;
    }

    .logo {
        margin-right: auto;  /* Push menu button to the right */
        padding-left: 10px;
    }

    .logo-img {
        height: 55px;  /* Increased from 25px */
    }

    .logo-text {
        font-size: 2.3rem;  /* Increased from 1.2rem */
    }

    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image img {
        height: 300px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .stat {
        flex: 0 0 calc(50% - 1rem);
    }

    #why-dolly {
        padding: 3rem 5%;
    }

    .why-header h2 {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .step {
        width: 100%;
    }

    .step-line {
        width: 2px;
        height: 100%;
        top: 40px;
        left: 19px;
        right: auto;
    }

    .content-slider {
        height: 350px;
    }

    .content-slide img {
        height: 200px;
    }

    .plans-grid {
        gap: 1rem;
    }

    .plan-card {
        flex: 0 1 100%;
        max-width: 400px;
    }

    .plan-card.premium {
        transform: scale(1);
    }

    .plans-header h2 {
        font-size: 2rem;
    }
    /* ...existing mobile styles... */
}

@media screen and (max-width: 480px) {
    .video-item {
        flex: 0 0 calc(100% - 10px);
    }
    
    .video-container {
        padding: 10px 10px;
    }
}

/* ...existing code... */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.plan-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-top: 15px;
}

.plan-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #757F9A, #D7DDE8);
}

.plan-header.standard {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.plan-header.luxury {
    background: linear-gradient(135deg, #FF416C, #FF4B2B);
}

.plan-header.ultra {
    background: linear-gradient(135deg, #141E30, #243B55);
}

.ultra-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
}

.package-btn.basic-btn {
    background: #757F9A;
}

.package-btn.luxury-btn {
    background: #FF416C;
}

.package-btn.ultra-btn {
    background: #141E30;
}

@media screen and (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-box {
        max-width: 100%;
    }
}

/* ...existing code... */

.feature-dropdown {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.feature-dropdown summary {
    padding: 1rem;
    background: var(--light-bg);
    cursor: pointer;
    position: relative;
    font-weight: 600;
    list-style: none;
    transition: var(--transition);
}

.feature-dropdown summary:hover {
    background: #eef1f5;
}

.feature-dropdown summary::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    transition: transform 0.3s ease;
}

.feature-dropdown[open] summary::after {
    transform: rotate(180deg);
}

.feature-dropdown ul {
    padding: 1rem;
    background: white;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.feature-dropdown li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.feature-dropdown li::before {
    content: '✓';
    margin-right: 0.5rem;
    color: #2ecc71;
}

/* Add specific colors for each plan type */
.plan-box.basic .feature-dropdown summary {
    background: linear-gradient(to right, #757F9A20, transparent);
}

.plan-box.standard .feature-dropdown summary {
    background: linear-gradient(to right, #2193b020, transparent);
}

.plan-box.luxury .feature-dropdown summary {
    background: linear-gradient(to right, #FF416C20, transparent);
}

.plan-box.ultra .feature-dropdown summary {
    background: linear-gradient(to right, #141E3020, transparent);
}

/* Animation for dropdown */
.feature-dropdown[open] ul {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .feature-dropdown summary {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .feature-dropdown ul {
        padding: 0.8rem;
    }

    .feature-dropdown li {
        font-size: 0.9rem;
    }
}

/* ...existing code... */

/* Banking Partners Section */
#banking-partners {
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-container h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.partners-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.partners-slider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: white;
    padding: 20px 0;
    margin: 0 auto;
}

.slide-track {
    display: flex;
    width: calc(250px * 10); /* Adjust based on number of slides */
    animation: scroll 30s linear infinite;
}

.slide-track:hover {
    animation-play-state: paused;
}

.slide {
    width: 250px;
    padding: 0 40px;
}

.slide img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    filter: none; /* Remove grayscale filter */
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.05); /* Add slight zoom effect on hover */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5)); /* Half of total width */
    }
}

/* Add gradient overlays for smooth fade effect */
.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .partners-container h2 {
        font-size: 2rem;
    }

    .partners-container p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .partners-slider {
        height: 80px;
    }

    .slide {
        width: 200px;
        padding: 0 30px;
    }

    .slide img {
        height: 40px;
    }

    .partners-slider::before,
    .partners-slider::after {
        width: 50px;
    }
}

/* ...existing code... */

/* Material Partners Section */
#material-partners {
    padding: 5rem 0;
    background: #fff;
}

.material-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.material-container h2 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
}

.material-container p {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    position: relative;
    overflow: visible;
}

.material-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: slideInFromRight 0.5s ease-out;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Remove transform animation styles */
.material-card::before {
    display: none;
}

.material-card img {
    width: 180px; /* Increased from 120px */
    height: 180px; /* Increased from 120px */
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: none; /* Remove any grayscale filter */
}

.material-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.material-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.material-card p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .material-card {
        flex: 0 0 calc(50% - 1rem); /* Show 2 cards at a time on mobile */
    }
}

@media screen and (max-width: 480px) {
    .material-card {
        flex: 0 0 100%; /* Show 1 card at a time on smaller screens */
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .material-container h2 {
        font-size: 2rem;
    }

    .material-container p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .material-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .material-card {
        padding: 1.5rem;
    }

    .material-card img {
        width: 120px; /* Adjusted for mobile */
        height: 120px; /* Adjusted for mobile */
    }

    .material-card h3 {
        font-size: 1.2rem;
    }

    .material-card p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .material-grid {
        grid-template-columns: 1fr;
    }
}

/* ...existing code... */

/* ...existing code... */

@media screen and (max-width: 768px) {
    /* Navigation */
    nav {
        height: 60px;
        padding: 0 1rem;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        transition: 0.3s ease-in-out;
        box-shadow: 5px 0 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    /* Hero Section */
    #hero {
        margin-top: 60px;
        height: calc(100vh - 60px);
        padding: 2rem 1rem;
    }

    #hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    /* Sections Spacing */
    section {
        padding: 3rem 1rem !important;
        background: linear-gradient(45deg, #f6f9fc, #e9f2f9, #f6f9fc);
        background-size: 200% 200%;
        animation: wavyBackground 15s ease infinite;
    }

    /* Cards Layout */
    .service-card, .why-card, .plan-box, .material-card {
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    /* Plans Section */
    .plans-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .plan-box {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }

    .feature-dropdown summary {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Partners Sections */
    .partners-slider {
        margin: 0 -1rem;
    }

    .material-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .material-card {
        padding: 1.5rem;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
    }

    .material-card img {
        width: 60px;
        height: 60px;
        margin: 0;
    }

    /* Typography */
    h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    /* Timeline */
    .timeline-steps {
        margin-left: 2rem;
    }

    .step {
        padding-left: 2rem;
        margin-bottom: 2rem;
    }

    .step-line {
        left: -2rem;
    }

    /* Video Section */
    .video-container {
        margin: 0 -1rem;
    }

    .video-item {
        min-width: 280px;
        margin: 0 0.5rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        text-align: center;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    #hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        width: 100%;
    }

    .material-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .material-card img {
        margin: 0 auto;
    }

    .slide {
        width: 160px;
        padding: 0 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 1rem;
    }
}

/* Tablet Specific */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .material-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape Mode */
@media screen and (max-height: 480px) and (orientation: landscape) {
    #hero {
        height: auto;
        min-height: 100vh;
    }

    .nav-links {
        overflow-y: auto;
    }

    .step {
        margin-bottom: 1rem;
    }
}

/* Comparison Section Styles */
#comparison {
    padding: 5rem 5%;
    background: #fff;
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #f8f9fa;
    padding: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.column-header {
    color: #333;
    font-size: 1.2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature {
    font-weight: 500;
    color: #333;
}

.dolly, .contractor {
    text-align: center;
    padding: 0 1rem;
}

.check {
    color: #2ecc71;
    font-weight: bold;
    margin-right: 5px;
}

.cross {
    color: #e74c3c;
    font-weight: bold;
    margin-right: 5px;
}

/* Mobile responsiveness for comparison section */
@media screen and (max-width: 768px) {
    .comparison-table {
        margin: 0 -5%;
        border-radius: 0;
    }

    .comparison-header {
        padding: 1rem;
    }

    .column-header {
        font-size: 1rem;
    }

    .comparison-row {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .feature {
        font-size: 0.9rem;
    }

    .dolly, .contractor {
        padding: 0 0.5rem;
    }
}

/* ...existing code... */

/* Comparison Table Styles */
.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.comparison-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #eee;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    text-align: center;
}

.column-header {
    padding: 1.5rem;
    font-size: 1.2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.comparison-row:hover {
    background-color: #f8f9fa;
}

.comparison-row > div {
    padding: 1.2rem;
    display: flex;
    align-items: center;
    border-right: 1px solid #eee;
}

.feature-col {
    font-weight: 500;
    color: var(--primary-color);
}

.dolly-col {
    color: #2ecc71;
}

.contractor-col {
    color: #e74c3c;
}

.dolly-col i, .contractor-col i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.fa-check-circle {
    color: #2ecc71;
}

.fa-times-circle {
    color: #e74c3c;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .comparison-container {
        padding: 2rem 10px;
    }

    .comparison-header, .comparison-row {
        grid-template-columns: 1fr;
    }

    .column-header, .comparison-row > div {
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .comparison-header .column-header {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .comparison-row > div:last-child {
        border-bottom: none;
    }

    .comparison-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* ...existing code... */

#services {
    text-align: center;
}

#services h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    #services h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
}

/* ...existing code... */

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.popup.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.popup-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.popup.active .popup-content {
    transform: scale(1);
    opacity: 1;
}

.close-btn {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    background: none;
    color: #666;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ff6b6b;
}

.popup form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup label {
    font-weight: 500;
    color: #333;
}

.popup input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.popup input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}

.popup button[type="submit"] {
    background: #ff6b6b;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup button[type="submit"]:hover {
    background: #ff5252;
}

.popup small {
    color: #666;
    font-size: 0.8rem;
}

/* Mobile responsiveness for popup */
@media screen and (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 1.5rem;
    }

    .popup input {
        padding: 0.7rem;
    }
}

/* ...existing code... */

/* ...existing code... */

/* Updated Popup Styles */
.popup {
    background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    max-width: 400px;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.popup-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.popup-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.popup-content input,
.popup-content select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s ease;
}

.popup-content select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.popup-content input:focus,
.popup-content select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.popup-content button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.popup-content button[type="submit"]:hover {
    background: #d63031;
    transform: translateY(-2px);
}

.close-btn {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
}

.close-btn:hover {
    color: var(--accent-color);
}

/* Mobile responsiveness for popup */
@media screen and (max-width: 768px) {
    .popup-content {
        width: 90%;
        padding: 1.5rem;
    }

    .popup-content h2 {
        font-size: 1.3rem;
    }

    .popup-content input,
    .popup-content select,
    .popup-content button[type="submit"] {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}

/* ...existing code... */

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: #2c3e50; /* Changed from rgba(0, 0, 0, 0.1) to a solid color */
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.footer-bottom p {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Update mobile responsiveness for footer bottom */
@media screen and (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

/* ...existing code... */

/* Update mobile menu button styles */
.mobile-menu-btn {
    display: none; /* Hidden by default */
}

/* Only show mobile menu button on smaller screens */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        padding: 0.5rem;
        position: absolute;
        right: 1rem;
        top: 0.6rem;
        z-index: 100;
    }
}

/* ...existing code... */

/* Mobile Menu Button - Hidden by default for desktop */
.mobile-menu-btn {
    display: none !important; /* Use !important to override any other styles */
}

/* Show mobile menu button only on mobile devices */
@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        position: absolute;
        right: 1rem;
        top: 0.6rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
        padding: 0.5rem;
        z-index: 100;
    }
}

/* ...existing code... */

/* ...existing code... */

#reviews {
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-container h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 350px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateX(0);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0;
    color: var(--primary-color);
}

.stars {
    color: #ffd700;
    margin-top: 5px;
}

.review-text {
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

@media screen and (max-width: 768px) {
    .review-card {
        flex: 0 0 300px;
        padding: 1.5rem;
    }
}

/* ...existing code... */

/* ...existing code... */

.reviews-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 5rem 0;
    overflow: hidden;
}

.reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.rating {
    color: #ffd700;
    margin: 5px 0;
}

.location {
    color: #666;
    font-size: 0.9rem;
}

.review-text {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.project-type {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .review-card {
        flex: 0 0 300px;
        padding: 1.5rem;
    }
}

/* ...existing code... */

/* ...existing code... */

.reviews-carousel {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.review-card {
    flex: 0 0 100%;
    max-width: 350px;
    margin: 0 15px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.review-card.active {
    opacity: 1;
    transform: scale(1);
}

/* Add navigation arrows */
.review-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 2;
}

.review-nav button {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.review-nav button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Add progress dots */
.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .review-card {
        flex: 0 0 90%;
        margin: 0 5%;
    }
}

/* Updated Reviews Section Styles */
.reviews-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px); /* Show 3 cards on desktop */
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeIn 0.5s forwards;
}

/* Navigation Arrows */
.review-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}

.review-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.review-nav button:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .review-card {
        flex: 0 0 calc(50% - 15px); /* Show 2 cards on tablets */
    }
}

@media screen and (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 30px); /* Show 1 card on mobile */
        margin: 0 15px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Reviews Section Mobile Fixes */
@media screen and (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-carousel {
        padding: 0;
        margin: 0 -15px;
    }

    .review-card {
        min-width: 85vw;
        margin: 0 15px;
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: row;
        align-items: center;
    }

    .client-img {
        width: 50px;
        height: 50px;
    }

    .client-info h3 {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .project-type {
        font-size: 0.8rem;
        padding: 4px 10px;
    }

    /* Navigation arrows for mobile */
    .review-nav {
        display: none; /* Hide on mobile */
    }

    /* Add touch scroll hint */
    .reviews-carousel::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 40px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
        pointer-events: none;
    }
}

/* Add these new animation keyframes */
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotateIn {
    0% { transform: rotate(-180deg) scale(0); opacity: 0; }
    100% { transform: rotate(0) scale(1); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(52, 152, 219, 0.2); }
    50% { box-shadow: 0 0 20px rgba(52, 152, 219, 0.6); }
}

@keyframes wavyBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Add to existing styles */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
    border: none;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(52, 152, 219, 0.1);
    color: var(--accent-color);
    transform: translateX(5px);
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 0.5rem 0;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: #f8f9fa;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle {
        justify-content: space-between;
        padding: 1rem;
    }

    .dropdown-menu a {
        padding: 0.8rem 2rem;
    }
}

/* Add these styles to your existing CSS */

.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: #fff;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.feature-categories {
    margin: 20px 0;
}

.feature-dropdown {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}

.feature-dropdown summary {
    padding: 15px;
    font-weight: 500;
    cursor: pointer;
    background: #f8f9fa;
}

.feature-dropdown ul {
    padding: 15px;
}

.package-includes {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.benefits-list i {
    color: var(--primary-color);
}

.plan-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.details-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Add these styles to your existing CSS */
.plan-box.premium {
    background: linear-gradient(to bottom right, #ffffff, #f8f9ff);
    border: 1px solid #e1e8ff;
}

.plan-box.signature {
    background: linear-gradient(to bottom right, #ffffff, #fff9f0);
    border: 2px solid #ffd700;
    transform: scale(1.05);
    position: relative;
    z-index: 1;
}

.elite-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #ff9900);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.premium-btn {
    background: linear-gradient(45deg, #3a7bd5, #00d2ff);
}

.signature-btn {
    background: linear-gradient(45deg, #ffd700, #ff9900);
}

.fas.fa-star {
    color: #ffd700;
}

.fas.fa-crown {
    color: #ff9900;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .plan-box.signature {
        transform: none;
    }
}

/* Add these styles to enhance the visual appeal */

.feature-dropdown {
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.feature-dropdown summary {
    padding: 1rem;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-dropdown summary i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.feature-dropdown ul {
    padding: 1rem;
    background: white;
}

.feature-dropdown li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    transition: all 0.3s ease;
}

.feature-dropdown li:last-child {
    border-bottom: none;
}

.feature-dropdown li:hover {
    color: #333;
    transform: translateX(5px);
}

.plan-box {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.plan-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 2px solid #eee;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2ecc71;
    margin: 1rem 0;
}

.price-note {
    color: #666;
    font-style: italic;
}

/* Add hover effects for interactive elements */
.feature-dropdown[open] summary {
    background: linear-gradient(to right, #e8f5e9, #ffffff);
    color: #2ecc71;
}

/* Add to your existing styles */

.commercial-plans .plan-box {
    background: linear-gradient(to bottom right, #ffffff, #f8f9ff);
}

.commercial-plans .plan-box.premium {
    border: 2px solid #3498db;
    position: relative;
}

.commercial-plans .plan-box.premium::before {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.commercial-plans .price-tag {
    color: #3498db;
}

.tab-btn {
    background: #f8f9fa;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #3498db;
    color: white;
}

/* ...existing code... */

/* ... existing code ... */

.package-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: #f8f9fa;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.villa-plans .plan-box {
    background: linear-gradient(to bottom right, #ffffff, #fff9f5);
}

.plan-header.luxury {
    background: linear-gradient(135deg, #bc4e9c, #f80759);
}

.plan-header.ultra {
    background: linear-gradient(135deg, #000428, #004e92);
    color: white;
}

/* ... existing code ... */

/* Add these styles to your existing CSS file */

.explore-more-container {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.explore-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.explore-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    background: #d63031;
}

.explore-more-btn i {
    transition: transform 0.3s ease;
}

.explore-more-btn:hover i {
    transform: translateX(5px);
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .explore-more-container {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .explore-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Image Optimization Styles */
img {
    max-width: 100%;
    height: auto;
    transform: translateZ(0); /* Hardware acceleration */
}

/* Add blur-up loading effect */
.lazy-image {
    filter: blur(10px);
    transition: filter 0.3s ease-out;
}

.lazy-image.loaded {
    filter: blur(0);
}

/* Optimize background images */
.hero-section {
    background-image: none; /* Remove default background */
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/header image.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform; /* Hardware acceleration */
}

/* ...existing code... */

/* Update How It Works section for mobile */
@media screen and (max-width: 768px) {
    #how-it-works {
        padding: 2rem 3%; /* Reduced padding */
    }

    .how-header {
        margin-bottom: 2rem; /* Reduced margin */
    }

    .how-header h2 {
        font-size: 1.8rem; /* Smaller heading */
    }

    .how-header p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .timeline-steps {
        margin-bottom: 1rem;
        gap: 1rem; /* Reduced gap */
    }

    .step {
        margin-bottom: 1rem;
        padding-left: 1rem; /* Reduced padding */
    }

    .step-number {
        width: 24px; /* Even smaller circles */
        height: 24px;
        font-size: 11px;
        margin-bottom: 0.3rem;
    }

    .step h3 {
        font-size: 0.75rem; /* Smaller text */
        margin-top: 0.2rem;
    }

    .step-line {
        top: 12px; /* Adjust line position */
        height: 1px; /* Thinner line */
    }

    .content-slider {
        height: 300px; /* Reduced height */
    }

    .content-slide img {
        height: 200px; /* Smaller images */
    }

    .content-slide p {
        padding: 0.8rem;
        font-size: 0.85rem;
        height: 80px; /* Reduced text area */
    }

    /* Vertical timeline for very small screens */
    @media screen and (max-width: 480px) {
        .timeline-steps {
            flex-direction: column;
            align-items: flex-start;
            padding-left: 1.5rem;
        }

        .step {
            width: 100%;
            margin-bottom: 0.8rem;
        }

        .step-line {
            width: 1px;
            height: calc(100% + 0.8rem);
            top: 24px;
            left: -1.5rem;
            right: auto;
        }

        .step:last-child .step-line {
            display: none;
        }

        .content-slider {
            height: 250px; /* Even smaller for very small screens */
        }

        .content-slide img {
            height: 150px;
        }

        .content-slide p {
            height: 60px;
        }
    }
}

/* ...existing code... */

/* ...existing code... */

.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.package-header.basic { background: linear-gradient(135deg, #f6f6f6, #ffffff); }
.package-header.classic { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.package-header.premium { background: linear-gradient(135deg, #fff8e1, #ffecb3); }
.package-header.royal { background: linear-gradient(135deg, #e8eaf6, #c5cae9); }

.popular-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.price {
    margin: 1.5rem 0;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.per {
    color: #666;
}

.package-features {
    padding: 2rem;
}

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-category h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-category ul {
    list-style: none;
}

.feature-category li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.feature-category li::before {
    content: '✓';
    margin-right: 0.5rem;
    color: #2ecc71;
}

.package-actions {
    padding: 2rem;
    display: flex;
    gap: 1rem;
}

.details-btn, .book-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.details-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.book-btn {
    background: var(--accent-color);
    border: none;
    color: white;
}

.package-notes {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.package-notes ul {
    list-style: none;
    margin-top: 1rem;
}

.package-notes li {
    padding: 0.5rem 0;
    color: #666;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .package-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .amount {
        font-size: 2rem;
    }
}

/* ...existing code... */

/* Update packages grid layout */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Show 4 columns on desktop */
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.package-card {
    width: 100%;
    min-width: 0; /* Allow cards to shrink below minimum width */
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;  /* Make sure card takes full height */
}

.package-header {
    padding: 1.5rem 1rem;
}

.package-features {
    flex: 1;  /* This will push the buttons to the bottom */
    padding: 1.5rem 1rem;
}

.feature-category {
    margin-bottom: 1rem;
}

.feature-category h4 {
    font-size: 1rem;
}

.feature-category li {
    font-size: 0.9rem;
}

.package-actions {
    margin-top: auto;  /* Push buttons to bottom */
    padding: 1.5rem 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;  /* Optional separator */
}

.details-btn, .book-btn {
    width: 100%;  /* Make buttons take full width */
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Responsive layout */
@media screen and (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ...existing code... */

/* ...existing code... */

@media screen and (max-width: 768px) {
    .packages-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }

    .packages-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .package-card {
        flex: 0 0 85%;
        min-width: 280px;
        scroll-snap-align: center;
        transform: scale(0.98);
        transition: transform 0.3s ease;
        margin: 0.5rem;
    }

    .package-card.active {
        transform: scale(1);
    }

    /* Add pagination dots */
    .package-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 1.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: var(--accent-color);
        transform: scale(1.2);
    }
}

/* ...existing code... */

@media screen and (max-width: 768px) {
    .packages-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.5rem; /* Reduced gap */
        padding: 0.5rem;
        margin: 0 -1rem; /* Negative margin to stretch full width */
        width: calc(100% + 2rem); /* Full width plus margins */
    }

    .package-card {
        flex: 0 0 100%; /* Take full width */
        min-width: calc(100% - 1rem); /* Full width minus gap */
        height: auto; /* Let height adjust based on content */
        margin: 0;
        padding-bottom: 0.5rem; /* Reduced bottom padding */
    }

    .package-header {
        padding: 1rem; /* Reduced padding */
    }

    .package-header h3 {
        font-size: 1.1rem; /* Smaller heading */
        margin-bottom: 0.5rem;
    }

    .price .amount {
        font-size: 1.8rem; /* Smaller price */
    }

    .package-features {
        padding: 0.8rem; /* Reduced padding */
    }

    .feature-category {
        margin-bottom: 0.5rem; /* Less space between feature categories */
    }

    .feature-category h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .feature-category li {
        font-size: 0.85rem;
        padding: 0.2rem 0; /* Less space between list items */
    }

    .package-actions {
        padding: 0.8rem;
        gap: 0.5rem;
    }

    .details-btn, .book-btn {
        padding: 0.6rem; /* Smaller buttons */
        font-size: 0.9rem;
    }
}

/* Even smaller screens */
@media screen and (max-width: 480px) {
    .package-card {
        min-width: calc(100% - 0.5rem); /* Almost full width */
    }
}

/* ...existing code... */

/* Add these styles for the form in header */
header .form-section {
    max-width: 400px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

header .form-section .w3-input,
header .form-section .w3-select {
    background: white;
}

header .form-section .w3-button {
    background: var(--accent-color);
    transition: all 0.3s ease;
}

header .form-section .w3-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile responsiveness for form */
@media screen and (max-width: 768px) {
    header .form-section {
        margin: 10px;
        padding: 15px;
    }

    header .form-section h2 {
        font-size: 1.2rem;
    }
}

/* Hero Form Mobile Fixes */
@media screen and (max-width: 768px) {
    .hero-overlay {
        flex-direction: column;
        padding: 2rem 1rem;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }

    .hero-content {
        margin: 0 0 2rem 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-form {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .form-wrapper {
        width: 100%;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .hero-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    /* Adjust hero content spacing */
    #hero {
        padding-top: 60px; /* Account for fixed navbar */
    }

    #hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    #hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Even smaller screens */
@media screen and (max-width: 480px) {
    .hero-overlay {
        padding: 1rem;
    }

    .hero-form {
        padding: 1rem;
    }

    .hero-form h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .submit-btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Landscape mode fixes */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero-overlay {
        padding: 1rem;
    }

    #hero {
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        margin-bottom: 1rem;
    }

    .hero-form {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 0.5rem;
    }
}

/* ...existing code... */

/* ...existing code... */

/* Hero Form Core Styles */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
    z-index: 2;
}

.hero-form {
    width: 350px;
    margin-left: 2rem;
    z-index: 2;
}

/* Mobile Hero Form Fixes */
@media screen and (max-width: 768px) {
    .hero-overlay {
        flex-direction: column;
        justify-content: center;
        padding: 80px 20px 40px 20px; /* Added top padding to account for fixed navbar */
        height: 100%;
        overflow-y: auto;
    }

    .hero-content {
        margin: 0 0 30px 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-form {
        width: 100%;
        max-width: 350px;
        margin: 0;
        padding: 20px;
    }

    #hero {
        min-height: 100vh;
        height: auto;
    }
}

/* Additional fixes for very small screens */
@media screen and (max-width: 480px) {
    .hero-overlay {
        padding: 70px 15px 30px 15px;
    }

    .hero-form {
        padding: 15px;
    }
}

/* Landscape mode fixes */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero-overlay {
        padding: 70px 20px 20px 20px;
    }
    
    .hero-content {
        margin-bottom: 20px;
    }
    
    .hero-form {
        transform: scale(0.95);
    }
}

/* ...existing code... */
