/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #f7931e;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    color: white;
    font-size: 20px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(255,107,53,0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #003662;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,78,137,0.3);
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    color: white;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

/* slider backgrounds inside hero */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slide.active {
    opacity: 1;
    animation: zoomSlide 5s ease-in-out;
}

@keyframes zoomSlide {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.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.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 
                 4px 4px 8px rgba(0,0,0,0.7),
                 0 0 20px rgba(0,0,0,0.8);
    color: #ffffff;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.9),
                 3px 3px 6px rgba(0,0,0,0.7);
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 50;
}

.whatsapp-btn a {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Features Section */
.features {
    background-color: var(--light-color);
    padding: 70px 0;
}

.features h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

/* Team Section */
.team-section {
    padding: 70px 0;
    background-color: white;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    background: white;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px 20px;
    background: linear-gradient(to bottom, var(--light-color), white);
}

.team-info h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.team-info p {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Media Section */
.media-section {
    padding: 70px 0;
}

.media-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.work-slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,78,137,0.1);
}

.media-slider {
    position: relative;
}

.media-slide {
    display: none;
    width: 100%;
    text-align: center;
}

.media-slide.active {
    display: block;
}

.media-slide img,
.media-slide video,
.media-slide iframe {
    max-width: 100%;
    border-radius: 8px;
}

.work-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.work-slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.work-prev-btn {
    left: -60px;
}

.work-next-btn {
    right: -60px;
}

.work-slider-dots {
    text-align: center;
    margin-top: 25px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.work-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,78,137,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.work-dot.active,
.work-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.3);
}

/* Gallery Section */
.gallery {
    padding: 70px 0;
}
.gallery h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-info {
    padding: 20px;
    background: white;
}

.gallery-info h3 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.gallery-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.gallery-btn {
    text-align: center;
}

/* Locations Section */
.locations {
    background-color: var(--light-color);
    padding: 70px 0;
}

.locations h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
}

.map-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.map-container:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.location-details {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.location-details h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.location-details p {
    color: #666;
    margin-bottom: 12px;
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 70px 0;
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
}

.testimonial-card .stars {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 14px;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--secondary-color);
    font-size: 16px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 18px;
    opacity: 0.95;
}

/* About Section */
.about-section {
    padding: 70px 0;
}

.about-content h2 {
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 30px;
}

.about-content .lead {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission Vision Values */
.mvv-section {
    background-color: var(--light-color);
    padding: 70px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.mvv-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mvv-card h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.mvv-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    padding: 70px 0;
}

.why-choose h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* Stats Section */
.stats {
    background-color: var(--secondary-color);
    color: white;
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
}

/* Projects Section */
.projects-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border-color);
}

.projects-section:last-of-type {
    border-bottom: none;
}

.projects-section h2 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.project-image {
    height: 150px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(255,255,255,0.3);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card h3 {
    color: var(--secondary-color);
    padding: 20px 15px 10px;
    font-size: 16px;
}

.project-card p {
    color: #666;
    padding: 0 15px 15px;
    font-size: 13px;
}

.project-card .btn {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
}

/* Services Section */
.services-section {
    padding: 70px 0;
}

.service-item {
    margin-bottom: 60px;
}

.service-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-image {
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.3);
    border-radius: 8px;
}

.service-content h2 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
}

.service-content ul {
    list-style: none;
    margin: 20px 0;
}

.service-content ul li {
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.service-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Process Section */
.process-section {
    background-color: var(--light-color);
    padding: 70px 0;
}

.process-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 14px;
}

/* Why Services */
.why-services {
    padding: 70px 0;
}

.why-services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
    margin-top: 5px;
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.info-item p {
    color: #666;
    font-size: 14px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form h2 {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    width: 100%;
}

#formMessage {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

#formMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#formMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Map Section */
.map-section {
    padding: 70px 0;
    background-color: var(--light-color);
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Logo - smaller on mobile */
    .logo img {
        height: 35px;
    }

    .logo h1 {
        font-size: 13px;
    }

    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 16px;
        display: block;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section - Mobile Optimized */
    .hero {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.9), 
                     3px 3px 6px rgba(0,0,0,0.8);
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.9),
                     2px 2px 5px rgba(0,0,0,0.8);
    }

    .slider-btn {
        font-size: 24px;
        padding: 10px 15px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 180px;
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Team Section - Mobile */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .team-member {
        border-radius: 8px;
    }

    .team-photo {
        height: 120px;
    }

    .team-info {
        padding: 10px 8px;
    }

    .team-info h3 {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .team-info p {
        font-size: 10px;
    }

    /* Media Section - Mobile */
    .work-slider-container {
        padding: 0 50px;
    }

    .work-prev-btn {
        left: 5px;
        font-size: 24px;
        padding: 10px 15px;
    }

    .work-next-btn {
        right: 5px;
        font-size: 24px;
        padding: 10px 15px;
    }

    .work-slider-dots {
        margin-top: 20px;
        gap: 8px;
    }

    .work-dot {
        width: 10px;
        height: 10px;
    }

    .media-slide video,
    .media-slide img {
        border-radius: 8px;
        max-height: 400px;
        object-fit: cover;
    }

    /* Features - Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-card i {
        font-size: 36px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    /* Gallery - Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item img {
        height: 220px;
    }

    /* Projects - Mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 200px;
    }

    /* Contact Grid - Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Service Grid - Mobile */
    .service-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-image {
        height: 250px;
        font-size: 60px;
    }

    /* Testimonials - Mobile */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    /* MVV Grid - Mobile */
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Stats - Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card h3 {
        font-size: 36px;
    }

    .stat-card p {
        font-size: 14px;
    }

    /* Process - Mobile */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* WhatsApp Button - Mobile */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn a {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    /* Footer - Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Headings - Mobile */
    h2 {
        font-size: 28px !important;
    }

    /* Sections - Mobile Padding */
    section {
        padding: 50px 0 !important;
    }

    /* Buttons - Mobile */
    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    /* CTA Buttons - Mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Map Container - Mobile */
    .map-container {
        height: 300px;
    }

    /* Form - Mobile */
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 14px;
    }

    /* Social Links Large - Mobile */
    .social-links-large {
        flex-direction: column;
        gap: 10px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile */
    .logo h1 {
        font-size: 14px;
    }

    .hero {
        min-height: 450px;
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons a {
        padding: 12px 25px;
        font-size: 14px;
    }

    .team-photo {
        height: 280px;
    }

    .team-info h3 {
        font-size: 20px;
    }

    .team-info p {
        font-size: 14px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-card i {
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }

    h2 {
        font-size: 24px !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .gallery-image {
        height: 200px;
    }

    .project-image {
        height: 180px;
    }
}

/* Scroll to Top Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.gallery-item,
.testimonial-card,
.project-card,
.mvv-card {
    animation: slideUp 0.6s ease-out;
}
