:root {
    --primary-color: #00695c;
    --secondary-color: #4db6ac;
    --accent-color: #ff7043;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --text-dark: #2c3e50;
    --text-light: #34495e;
    --text-muted: #7f8c8d;
    --background-light: #f5f7fa;
    --white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 10px;
    --transition: all 0.3s ease;
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title.center {
    text-align: center;
}

.section-title.center::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-light);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Hero Slider */
.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;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
}



/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    /* Ensure perfect centering and visibility */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    color: var(--white);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.cta-button:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

.cta-button i {
    margin-right: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

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

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Mission and Commitment Row */
.mission-commitment-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

/* Mission and Commitment Sections */
.mission-section,
.commitment-section {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 105, 92, 0.05), rgba(77, 182, 172, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-section:hover,
.commitment-section:hover {
    background: linear-gradient(135deg, rgba(0, 105, 92, 0.1), rgba(77, 182, 172, 0.1));
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-title,
.commitment-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-title i,
.commitment-title i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.mission-text,
.commitment-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    flex-grow: 1;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 105, 92, 0.03), rgba(77, 182, 172, 0.03));
    border-radius: var(--border-radius);
}

.stat-item {
    text-align: center;
}

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

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card:hover .service-icon {
    transform: scale(1.1);
}

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

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.service-link:hover {
    background: #e64a19;
    transform: translateY(-2px);
    color: var(--white);
}

.service-link i {
    margin-right: 0.5rem;
}

/* Location Section */
.location {
    padding: 5rem 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    min-width: 24px;
}

.location-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.location-item p {
    color: var(--text-light);
    margin: 0;
}

.location-item a {
    color: var(--primary-color);
    font-weight: 500;
}

.location-map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.location-map iframe {
    border-radius: var(--border-radius);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 24px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 105, 92, 0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #004d40;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 1rem;
    position: relative;
    z-index: 10;
}

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

/* Company Info Section */
.company-info {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.company-description {
    color: var(--white);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Footer Sections */
.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white);
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Services Grid Footer */
.services-grid-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-group h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-group ul {
    list-style: none;
    padding: 0;
}

.service-group li {
    margin-bottom: 0.5rem;
}

.service-group a {
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-group a:hover {
    color: var(--secondary-color);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item h4 {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.contact-item a {
    color: var(--white);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: var(--white);
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Floating Contact Icons */
.floating-contacts {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    animation: pulse 2s infinite;
}

.floating-contact-btn.call {
    background: var(--primary-color);
}

.floating-contact-btn.whatsapp {
    background: #25d366;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 105, 92, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 105, 92, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 105, 92, 0);
    }
}

.floating-contact-btn.whatsapp {
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .mission-commitment-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .company-info {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .services-grid-footer {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

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

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

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Enhanced Hero Section for Mobile */
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-slider {
        height: 100%;
    }

    .slide {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero-content {
        padding: 0 1rem;
        text-align: center;
        z-index: 5;
    }

    .cta-button {
        display: inline-block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Enhanced Footer for Mobile */
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .company-info {
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .footer-logo {
        justify-content: center;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .company-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        transition: var(--transition);
    }

    .social-links a:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    /* Footer Sections Mobile */
    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Footer Links Mobile */
    .footer-links {
        text-align: center;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-links a {
        font-size: 0.95rem;
        padding: 0.3rem 0;
        display: inline-block;
        transition: var(--transition);
        border-radius: 4px;
    }

    .footer-links a:hover {
        color: var(--secondary-color);
        background: rgba(255, 255, 255, 0.05);
        padding: 0.3rem 0.5rem;
    }

    /* Services Grid Footer Mobile */
    .services-grid-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-group {
        text-align: center;
    }

    .service-group h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        color: var(--secondary-color);
    }

    .service-group ul {
        margin: 0;
    }

    .service-group li {
        margin-bottom: 0.4rem;
    }

    .service-group a {
        font-size: 0.9rem;
    }

    /* Contact Details Mobile */
    .contact-details {
        gap: 1rem;
    }

    .contact-item {
        text-align: center;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin-bottom: 0.8rem;
        transition: var(--transition);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .contact-item h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        margin: 0;
    }

    .contact-item a {
        font-size: 0.9rem;
        word-break: break-word;
    }

    /* Footer Bottom Mobile */
    .footer-bottom {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.4;
    }



    .slider-indicators {
        bottom: 1.5rem;
        gap: 0.75rem;
    }

    .indicator {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
    }

    .indicator.active {
        background: var(--white);
        transform: scale(1.3);
    }

    .indicator:hover {
        background: rgba(255, 255, 255, 0.8);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Enhanced Hero for Small Mobile */
    .hero {
        height: 100vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }

    .hero-description {
        font-size: 0.95rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .hero-content {
        padding: 0 15px;
        text-align: center;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: auto;
        display: inline-block;
    }



    .slider-indicators {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .location-map {
        height: 300px;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .floating-contacts {
        bottom: 1rem;
        left: 1rem;
    }
    
    .floating-contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Enhanced Footer for Small Mobile */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .company-info {
        margin-bottom: 0.5rem;
    }

    .footer-logo {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .company-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .social-links {
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Footer Sections Small Mobile */
    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    /* Footer Links Small Mobile */
    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 0.25rem 0;
    }

    /* Services Grid Footer Small Mobile */
    .services-grid-footer {
        gap: 1rem;
    }

    .service-group h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .service-group a {
        font-size: 0.85rem;
    }

    /* Contact Details Small Mobile */
    .contact-details {
        gap: 0.8rem;
    }

    .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }

    .contact-item i {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .contact-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

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

    .contact-item a {
        font-size: 0.85rem;
    }

    /* Footer Bottom Small Mobile */
    .footer-bottom {
        padding: 1rem 0;
        margin-top: 1.5rem;
    }

    .footer-bottom-content {
        gap: 0.6rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .back-to-top,
    .scroll-indicator {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #333333;
        --text-dark: #000000;
        --text-light: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}