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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(142, 39, 198, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #8e27c6;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8e27c6;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #8e27c6;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8e27c6;
    margin: 3px 0;
    transition: 0.3s;
}

/* Section System */
.section {
    padding-top: 70px;
    scroll-margin-top: 70px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 2rem 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-carousel-slide.active {
    opacity: 1;
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(142, 39, 198, 0.8) 0%, rgba(106, 31, 154, 0.6) 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero p em {
    font-size: 2.5rem;
    display: block;
    margin: 0.5rem 0;
}

/* Hero flags section */
.hero-flags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: center;
}

.hero-flags img {
    width: 40px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-flags img:hover {
    transform: scale(1.1);
}

/* Mobile responsiveness for hero flags */
@media (max-width: 768px) {
    .hero-flags {
        gap: 0.3rem;
    }

    .hero-flags img {
        width: 32px;
    }
}

@media (max-width: 480px) {
    .hero-flags img {
        width: 28px;
    }
}

/* SADC Logo Section */
.sadc-logo-section {
    margin: 2rem 0;
    text-align: center;
}

.sadc-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 10px;
}

.sadc-text {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin: 2rem auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Slogan */
.slogan {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-primary, .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-primary {
    background: white;
    color: #8e27c6;
    border: 2px solid white;
}

.cta-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #8e27c6;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8e27c6;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(142, 39, 198, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #8e27c6;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* Vehicle Categories */
.vehicle-categories {
    padding: 5rem 0;
    background: white;
}

.vehicle-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8e27c6;
    margin-bottom: 1rem;
}

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

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

.category-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(142, 39, 198, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(142, 39, 198, 0.25);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.category-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

/* Vehicle Slider */
.vehicle-slider {
    padding: 5rem 0;
    background: #f8f9fa;
}

.vehicle-slider h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8e27c6;
    margin-bottom: 3rem;
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(142, 39, 198, 0.2);
}

.slider-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.slide-overlay h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slide-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(142, 39, 198, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #8e27c6;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Dots Indicator */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Mobile Responsiveness for Slider */
@media (max-width: 768px) {
    .slider-container {
        margin: 0 10px;
    }

    .slider-wrapper {
        height: 350px;
    }

    .slide-overlay {
        padding: 1.5rem;
    }

    .slide-overlay h3 {
        font-size: 1.4rem;
    }

    .slide-overlay p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper {
        height: 280px;
    }

    .slide-overlay {
        padding: 1rem;
    }

    .slide-overlay h3 {
        font-size: 1.2rem;
    }

    .slide-overlay p {
        font-size: 0.9rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        height: 250px;
    }

    .category-overlay {
        padding: 1.5rem;
    }

    .category-overlay h3 {
        font-size: 1.3rem;
    }

    .category-overlay p {
        font-size: 0.9rem;
    }
}

/* SADC Countries Section */
.sadc-countries {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.sadc-countries h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8e27c6;
    margin-bottom: 1rem;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.country-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(142, 39, 198, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.country-card:hover {
    transform: translateY(-5px);
    border-color: #8e27c6;
    box-shadow: 0 20px 40px rgba(142, 39, 198, 0.2);
}

.country-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.country-card h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Mobile Responsiveness for Countries Grid */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .country-card {
        padding: 1.5rem 0.5rem;
    }

    .country-flag {
        font-size: 3rem;
    }

    .country-card h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .country-card {
        padding: 1rem 0.5rem;
    }

    .country-flag {
        font-size: 2.5rem;
    }

    .country-card h4 {
        font-size: 0.9rem;
    }
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #8e27c6 0%, #b847d1 25%, #6a1f9a 50%, #4a148c 75%, #8e27c6 100%);
    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite;
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(184, 71, 209, 0.2) 0%, transparent 60%);
    animation: headerOrbs 15s ease-in-out infinite alternate;
}

@keyframes headerOrbs {
    0% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    100% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.4;
    }
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* About Content */
.about-content {
    padding: 5rem 0;
}

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

.about-text {
    background: #8e27c6;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(142, 39, 198, 0.2);
}

.about-text h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: white;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.about-images {
    display: flex;
    align-items: center;
    height: 100%;
}

.about-image-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    height: 100%;
    width: 100%;
}

.about-image-grid img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #f8f9fa;
}

.about-image-grid img:hover {
    transform: scale(1.05);
}

/* Services Content */
.services-content {
    padding: 5rem 0;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(142, 39, 198, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: #8e27c6;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

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

/* Process Steps */
.service-process {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
}

.service-process h2 {
    text-align: center;
    color: #8e27c6;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #8e27c6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.step p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Content */
.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #8e27c6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8e27c6;
    margin-top: 0.25rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: #8e27c6;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.cta-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.cta-section h3 {
    color: #8e27c6;
    margin-bottom: 1.5rem;
}

.cta-section .cta-primary {
    background: #8e27c6;
    color: white;
    border: 2px solid #8e27c6;
}

.cta-section .cta-primary:hover {
    background: white;
    color: #8e27c6;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(142, 39, 198, 0.1);
}

.contact-form h3 {
    color: #8e27c6;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8e27c6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #8e27c6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

/* Footer SADC Logo */
.footer-sadc {
    margin-top: 1.5rem;
    text-align: center;
}

.footer-sadc-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    background: white;
    padding: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-sadc-text {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Brands Section */
.brands-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.brands-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8e27c6;
    margin-bottom: 3rem;
    font-weight: 700;
}

.brands-slider-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.brands-track {
    display: inline-flex;
    animation: scroll-brands-horizontal 30s linear infinite;
    gap: 4rem;
    align-items: center;
}

.brand-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    height: 120px;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(142, 39, 198, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.brand-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(142, 39, 198, 0.2);
    border-color: #8e27c6;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.brand-logo-item:hover img {
    filter: grayscale(0);
}

@keyframes scroll-brands-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.brands-slider-wrapper:hover .brands-track {
    animation-play-state: paused;
}

/* Mobile responsiveness for brands slider */
@media (max-width: 768px) {
    .brands-section {
        padding: 3rem 0;
    }

    .brands-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .brand-logo-item {
        min-width: 150px;
        height: 80px;
        padding: 0.8rem;
    }

    .brands-track {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .brands-section h2 {
        font-size: 1.8rem;
    }

    .brand-logo-item {
        min-width: 120px;
        height: 70px;
        padding: 0.6rem;
    }

    .brands-track {
        gap: 1.5rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px){
    .hamburger {
        display: flex;
    }

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

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

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

