/* assets/css/style.css */
/* Base Styles */
:root {
   --primary: #000000; /* Changed from #0d4d8c */
    --secondary: #d9a406;
    --accent: #333333; /* Changed from #3a6ea5 */
    --light: #f5f8fa;
    --dark: #000000; /* Changed from #1a365d */
    --danger: #c53030;
    --gray: #718096;
    --botswana-blue: #000000; /* Changed from #75aadb */
    --botswana-black: #000000;
    --botswana-white: #ffffff;
    --botswana-brown: #9c6a3c;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 100%); /* Changed from blue gradient */
    --gradient-secondary: linear-gradient(135deg, #d9a406 0%, #f0c34d 100%);
    --gradient-primary-reverse: linear-gradient(135deg, #333333 0%, #000000 100%); /* Added for reversed gradient */
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 25px rgba(0,0,0,0.12);
    --shadow-heavy: 0 15px 35px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
/* Simple Contact Section */
.contact-container-simple {
    display: flex;
    justify-content: center;
}

.contact-info-wrapper-full {
    background: var(--gradient-primary);
    color: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
    max-width: 800px;
    width: 100%;
}

.contact-details-full {
    margin-top: 30px;
}

/* Map Container */
.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    background: #f8f9fa ;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder-content {
    text-align: center;
    z-index: 2;
}

.map-placeholder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230d4d8c"/><path d="M50,20 A30,30 0 1,1 50,80 A30,30 0 1,1 50,20" fill="none" stroke="%23ffffff" stroke-width="2" stroke-opacity="0.2"/><circle cx="50" cy="50" r="5" fill="%23d9a406"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: width 0.3s;
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-primary {
    background: var(--gradient-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a3c6d 0%, #155a8a 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-info div:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.social-links a {
    color: white;
    margin-left: 15px;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    transition: all 0.3s;
    text-decoration: none;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo span {
    color: var(--secondary);
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.company-name {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--secondary);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--secondary);
}

/* Right Side Social Icons */
.side-social-icons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
    background: var(--gradient-primary);
    border-radius: 8px 0 0 8px;
    padding: 15px 5px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.side-social-icons:hover {
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
    transform: translateY(-50%) translateX(-5px);
}

.side-social-icons a {
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    margin: 5px 0;
    position: relative;
    border-radius: 50%;
    text-decoration: none;
}

.side-social-icons a:hover {
    background-color: var(--secondary);
    transform: translateX(-5px);
}

.side-social-icons a .tooltip {
    position: absolute;
    right: 60px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
    box-shadow: var(--shadow-light);
}

.side-social-icons a .tooltip:after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary);
}

.side-social-icons a:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
    box-shadow: var(--shadow-medium);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gradient-secondary);
    transform: translateY(-5px);
}

/* Botswana Flag Colors Section */
.botswana-flag {
    height: 8px;
    background: linear-gradient(to right, 
        var(--botswana-blue) 0%, 
        var(--botswana-blue) 33%, 
        var(--botswana-white) 33%, 
        var(--botswana-white) 66%, 
        var(--botswana-black) 66%, 
        var(--botswana-black) 100%);
    width: 100%;
    margin-bottom: 5px;
}

/* Hero Section */
.hero {
    background: url('../../images/bag.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 0;
    text-align: center;../../images/bag.jpeg
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    background: linear-gradient(to right, #fff, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Stats Counter */
.stats-counter {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    padding: 20px;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
    transition: all 0.3s;
}

.stat-box:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-top: 4px solid var(--secondary);
}

.service-icon {
    background: var(--gradient-primary);
    color: white;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--gradient-secondary);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--light);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.gallery-filter-btn {
    padding: 10px 25px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.gallery-filter-btn.active, .gallery-filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Products Section */
.products {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.product-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.product-card:hover:before {
    transform: scaleX(1);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.product-tag {
    background-color: #e2e8f0;
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
}

.product-tag:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin: 0 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
}

.testimonial-company {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    transition: all 0.3s;
}

.stat-item:hover .stat-number {
    color: var(--secondary);
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
    transition: all 0.3s;
}

.about-img:hover {
    transform: translateY(-10px);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5eb;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 77, 140, 0.1);
    outline: none;
    background: white;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
    min-height: 120px;
}

.contact-info-wrapper {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
}

.contact-info-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.9;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.contact-icon {
    background: rgba(255,255,255,0.1);
    color: var(--secondary);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background: var(--gradient-secondary);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.contact-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: white;
}

.contact-content p {
    margin: 5px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.detail-sub {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: white;
    padding: 70px 0 20px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--gradient-secondary);
    bottom: 0;
    left: 0;
}

.footer-links li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* Botswana Location Badge */
.botswana-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 10px;
    font-size: 0.9rem;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.botswana-badge:hover {
    background: rgba(217, 164, 6, 0.2);
    transform: translateY(-3px);
}

.botswana-badge i {
    margin-right: 8px;
    color: var(--secondary);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-img {
        order: -1;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .side-social-icons {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 140px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 140px);
        background: var(--gradient-primary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        border-radius: 10px 0 0 10px;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 0 0 30px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .contact {
        padding: 70px 0;
    }
    
    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 1.6rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .contact-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Dynamic Home Sections */
.home-section {
    padding: 100px 0;
    position: relative;
}

.home-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.home-section .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.home-section .section-title p {
    font-size: 1.1rem;
    color: inherit;
    opacity: 0.8;
}

/* Stats Grid for Home Page */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h3 {
    font-size: 3rem;
    color: #d9a406;
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Responsive Design for Home Sections */
@media (max-width: 768px) {
    .home-section {
        padding: 60px 0;
    }
    
    .home-section .section-title h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-img {
        order: -1;
    }
}