/*
Theme Name: Skytech Solar Solutions
Theme URI: https://skytechsolarsolutions.in
Description: Modern Professional Solar Solutions WordPress Theme
Version: 4.0
Author: Skytech Team
Text Domain: skytech
*/

/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00A8CC;
    --primary-dark: #007B9A;
    --primary-light: #33B9D6;
    --secondary: #FF6B35;
    --accent: #00C9A7;
    --dark: #1E2A3B;
    --darker: #0F172A;
    --light: #F8FAFC;
    --gray: #64748B;
    --gray-light: #E2E8F0;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== MODERN HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    height: 70px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    margin: 0 10px;
    width: calc(100% - 20px);
    border: 1px solid var(--gray-light);
    top: 5px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    flex-shrink: 0;
}

.logo img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

.header.scrolled .logo img {
    height: 38px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 168, 204, 0.25);
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 204, 0.35);
    color: var(--white);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--gray-light);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--dark);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    height: 70vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 42, 59, 0.85) 0%, rgba(0, 168, 204, 0.4) 100%);
}

.hero-content {
    position: relative;
    max-width: 650px;
    color: var(--white);
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

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

/* ===== BRANDS MARQUEE ===== */
.brands-marquee {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-light);
    overflow: hidden;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brands-title {
    text-align: center;
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.brands-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none !important;
    opacity: 1 !important;
}

.brand-item:hover {
    transform: translateY(-2px);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 10%;
    background: var(--white);
}

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

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary);
}

.about-content p {
    font-size: 1.15rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray);
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.highlight-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== MISSION & GOAL SECTION ===== */
.mission-section {
    padding: 5rem 10%;
    background: var(--light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card, .goal-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
    position: relative;
}

.mission-card::before, .goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

.mission-card:hover, .goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card h3, .goal-card h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-card p, .goal-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 5rem 10%;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 2rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--gray-light);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

/* ===== WHAT WE PROVIDE SECTION ===== */
.provide-section {
    padding: 5rem 10%;
    background: var(--light);
}

.provide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.provide-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

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

.provide-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.provide-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== MANAGEMENT TEAM ===== */
.management-section {
    padding: 5rem 10%;
    background: var(--white);
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.management-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
}

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

.management-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.management-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.management-position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.management-bio {
    color: var(--gray);
    line-height: 1.6;
    text-align: left;
}

.management-bio p {
    margin-bottom: 1.5rem;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: 5rem 10%;
    background: var(--light);
}

.projects-container {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    width: 100%;
    margin: 0 auto;
}

.projects-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.projects-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.projects-table th {
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.projects-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray);
    font-size: 0.9rem;
    white-space: nowrap;
}

.projects-table tr:hover {
    background: var(--light);
}

.projects-table tr:last-child td {
    border-bottom: none;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 30px rgba(0, 168, 204, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 168, 204, 0.4);
}

.floating-cta-content {
    flex: 1;
}

.floating-cta h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.floating-cta p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.floating-cta .cta-button {
    background: var(--white);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.floating-cta .cta-button:hover {
    background: var(--light);
    transform: translateY(-1px);
}

/* Mobile Floating CTA */
.mobile-floating-cta {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 999;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 168, 204, 0.4);
    display: none;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.mobile-floating-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-floating-cta-content {
    flex: 1;
    text-align: center;
}

.mobile-floating-cta h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.mobile-floating-cta .cta-button {
    background: var(--white);
    color: var(--primary);
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 25px;
    flex-shrink: 0;
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    color: var(--dark);
    background: var(--gray-light);
}

.modal-title {
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Form Styles */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-input, .form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius-sm);
    background: var(--white);
    color: var(--dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

.form-input::placeholder {
    color: var(--gray);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 4rem 10% 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-info li i {
    color: var(--primary);
    min-width: 16px;
    margin-top: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .navbar {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
        padding: 0;
    }
    
    .header.scrolled {
        height: 65px;
        margin: 0 8px;
        width: calc(100% - 16px);
        border-radius: 0 0 12px 12px;
        top: 4px;
    }
    
    .navbar {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .header.scrolled .logo img {
        height: 30px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 0;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1.2rem 0;
        font-size: 1.1rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .brands-marquee {
        padding: 2rem 0;
    }
    
    .brands-container {
        padding: 0 1rem;
    }
    
    .brands-scroll {
        gap: 2rem;
        padding: 0.5rem 0;
        justify-content: center;
    }
    
    .brand-item {
        min-width: 100px;
        padding: 0.5rem;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    .about-section,
    .mission-section,
    .services-section,
    .provide-section,
    .management-section,
    .projects-section,
    .brands-section,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid,
    .management-grid,
    .provide-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .management-card,
    .mission-card,
    .goal-card {
        padding: 2rem 1.5rem;
    }
    
    .floating-cta {
        display: none;
    }
    
    .mobile-floating-cta {
        display: flex;
    }
    
    .modal {
        padding: 0.5rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        width: 100%;
        margin: 0;
    }
    
    .footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .projects-table-wrapper {
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-slider {
        min-height: 450px;
    }
    
    .brands-scroll {
        gap: 1.5rem;
    }
    
    .brand-item {
        min-width: 80px;
    }
    
    .brand-logo {
        height: 30px;
    }
    
    .mobile-floating-cta {
        padding: 1rem 1.2rem;
    }
    
    .mobile-floating-cta h4 {
        font-size: 0.9rem;
    }
    
    .mobile-floating-cta .cta-button {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
}

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

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none !important;
}

/* Loading States */
.cta-button.loading {
    position: relative;
    color: transparent;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fix white space issues */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

/* Ensure proper background coverage */
.hero-slider,
.brands-marquee,
.about-section,
.mission-section,
.services-section,
.provide-section,
.management-section,
.projects-section {
    position: relative;
    z-index: 1;
}