* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #1a1a1a;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a25;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

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

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

lottie-player {
    width: 300px;
    height: 300px;
}

.loader-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 20px;
    font-weight: 600;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 100px 20px 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 2rem 0;
    animation: fadeInUp 1.4s ease;
}

.hero-stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-stat-item p {
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1.6s ease;
}

/* Buttons */
.btn {
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

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

.feature {
    text-align: center;
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Stats Section */
.stats {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: var(--light-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-us-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.why-us-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&h=1080&fit=crop') center/cover no-repeat fixed;
    position: relative;
}

.services .section-title {
    color: var(--white);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: var(--light-bg);
}

.packages-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 40px;
}

.packages-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 0 50px;
    max-width: 100%;
}

.packages-carousel {
    overflow: hidden;
    flex: 1;
    padding-top: 25px;
    margin-top: -25px;
    padding-bottom: 20px;
    margin-bottom: -20px;
    max-width: calc(100vw - 100px);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - 60px) / 3));
    gap: 30px;
    transition: transform 0.4s ease;
    padding-bottom: 10px;
}

.package-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.package-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.package-nav-btn.prev {
    left: -25px;
}

.package-nav-btn.next {
    right: -25px;
}

.package-nav-btn i {
    font-size: 20px;
}

.package-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    margin-top: 20px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.package-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.package-price .currency {
    font-size: 24px;
    color: var(--primary-color);
}

.package-price .amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price .unit {
    font-size: 18px;
    color: #666;
}

.gst-text {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.package-accordions {
    margin-bottom: 25px;
    flex-grow: 1;
}

.accordion-item {
    border-bottom: 1px solid var(--light-bg);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-header i.fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: var(--primary-color);
}

.accordion-item.active .accordion-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
}

.accordion-content ul {
    list-style: none;
    padding: 10px 0 15px 0;
}

.accordion-content ul li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.accordion-content ul li i {
    color: var(--primary-color);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 4px;
}

.package-card .btn {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: auto;
}

.terms-text {
    font-size: 13px;
    color: #999;
    margin-top: 15px;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Projects Section */
.projects {
    padding: 100px 0;
}

.project-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
}

.project-tab-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.project-tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.project-tab-btn i {
    font-size: 18px;
}

.project-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.project-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    margin-bottom: 0.5rem;
}

/* Video Cards */
.project-video-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.video-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&h=1080&fit=crop') center/cover no-repeat fixed;
    position: relative;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    align-items: center;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: calc(33.333% - 1.5rem);
    transition: all 0.5s ease;
    opacity: 0.5;
    transform: scale(0.85);
    position: relative;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.testimonial-card.left {
    opacity: 0.6;
    transform: scale(0.9) translateX(20px);
}

.testimonial-card.right {
    opacity: 0.6;
    transform: scale(0.9) translateX(-20px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.testimonial-role {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 0;
}

/* CTA Banner */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), #e8734d);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.cta-feature i {
    font-size: 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.contact-form .form-group label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

.char-counter {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

.char-counter #charCount {
    font-weight: 600;
    transition: color 0.3s ease;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Honeypot fields - hidden from users */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.form-group.has-error input:focus,
.form-group.has-error select:focus,
.form-group.has-error textarea:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-submit .btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
}

.btn-submit.loading .btn-text {
    opacity: 0;
    transform: translateY(-50px);
}

/* Truck Animation */
.truck-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-submit.loading .truck-animation {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.truck {
    position: relative;
    width: 80px;
    height: 40px;
    /* animation: drive 2s linear infinite; */
}

@keyframes drive {
    0% {
        transform: translateX(-150px);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(150px);
    }
}

.truck-body {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 45px;
    height: 20px;
    background: #fff;
    border-radius: 2px;
}

.truck-cabin {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 25px;
    height: 30px;
    background: #fff;
    border-radius: 3px 3px 0 0;
}

.truck-cabin::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 15px;
    height: 12px;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 2px;
}

.truck-wheel {
    position: absolute;
    bottom: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #333;
    border-radius: 50%;
    animation: rotate 0.5s linear infinite;
}

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

.wheel-1 {
    left: 5px;
}

.wheel-2 {
    right: 8px;
}

.road {
    position: absolute;
    top: 50%;
    width: 200%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.5) 0px,
        rgba(255, 255, 255, 0.5) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: roadMove 1s linear infinite;
}

@keyframes roadMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-20px);
    }
}

.btn-submit.success {
    background: #28a745;
    border-color: #28a745;
}

.btn-submit.success .truck-animation {
    opacity: 0;
}

.btn-submit.success .btn-text {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-card {
    background: var(--light-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    word-break: break-word;
}

.contact-link:hover {
    color: #e8734d;
}

.contact-time {
    display: block;
    font-size: 0.85rem;
    color: #999;
}

/* Social Media Section */
.contact-social {
    padding: 60px 0;
    background: var(--light-bg);
    text-align: center;
}

.contact-social h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.social-link i {
    font-size: 1.3rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
    word-break: break-word;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

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

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.scroll-top.active {
    display: flex;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #27ae60;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    font-size: 0.95rem;
    font-weight: 500;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 100px 30px 40px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .hero-stat-item h3 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-tabs {
        gap: 15px;
    }

    .project-tab-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .packages-carousel-wrapper {
        gap: 10px;
        padding: 0 35px;
    }

    .packages-carousel {
        max-width: calc(100vw - 70px);
    }

    .packages-grid {
        grid-template-columns: repeat(4, calc((100% - 30px) / 2));
        gap: 30px;
    }

    .package-nav-btn {
        width: 40px;
        height: 40px;
    }

    .package-nav-btn.prev {
        left: -20px;
    }

    .package-nav-btn.next {
        right: -20px;
    }

    .package-nav-btn i {
        font-size: 16px;
    }

    lottie-player {
        width: 200px;
        height: 200px;
    }

    .loader-text {
        font-size: 1rem;
    }
}

@media (max-width: 650px) {
    /* Global Heading Sizes */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .hero {
        padding: 90px 20px 30px;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }

    .hero-stat-item h3 {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .hero-stat-item p {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .feature h4 {
        font-size: 0.9rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }

    .why-us-card h3 {
        font-size: 1.1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .project-info h3 {
        font-size: 1.1rem;
    }

    .video-info h3 {
        font-size: 1.1rem;
    }

    .testimonial-header h4 {
        font-size: 1rem;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .contact-card h4 {
        font-size: 1.1rem;
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .project-tab-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-features {
        gap: 1.5rem;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    .packages-grid {
        grid-template-columns: repeat(4, 100%);
    }

    .package-nav-btn.prev {
        left: -15px;
    }

    .package-nav-btn.next {
        right: -15px;
    }

    .package-card {
        padding: 20px;
    }

    .package-header h3 {
        font-size: 18px;
    }

    .package-price .amount {
        font-size: 32px;
    }

    .accordion-header {
        font-size: 13px;
        padding: 12px 0;
    }

    .packages-carousel-wrapper {
        padding: 0 30px;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 2rem;
    }

    .testimonial-card.left,
    .testimonial-card.right {
        display: none;
    }

    .testimonial-card.active {
        transform: scale(1);
        opacity: 1;
    }

    .testimonials-track {
        gap: 0;
    }

    .testimonials-slider {
        padding: 2rem 0;
    }

    lottie-player {
        width: 150px;
        height: 150px;
    }

    .loader-text {
        font-size: 0.9rem;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }

    .toast {
        top: 80px;
        right: 20px;
        left: 20px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}
