/* ==================== KILOM CONSTRUCTION - BLUE THEME ==================== */
:root {
    --light-blue: #e6f3ff;
    --sky-blue: #87CEEB;
    --medium-blue: #3498db;
    --deep-blue: #2c3e50;
    --navy-blue: #1a2634;
    --gold-accent: #f1c40f;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--deep-blue);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-blue), var(--deep-blue));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.6rem 0; /* Mobile-first: compact on small screens */
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-sticky {
    background: rgba(26, 38, 52, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .navbar { padding: 0.8rem 0; }
    .navbar-sticky { padding: 0.5rem 0; }
}

@media (min-width: 992px) {
    .navbar { padding: 1rem 0; }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px; /* Mobile-first: iPhone SE base */
    width: auto;
    transition: all 0.3s ease;
}

.navbar-sticky .logo img {
    height: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 6px;
}

.logo-text .company-name {
    font-size: 0.72rem; /* Mobile-first */
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
}

.logo-text .company-tagline {
    font-size: 0.48rem; /* Mobile-first */
    color: var(--sky-blue);
    font-style: italic;
}

/* Tablet */
@media (min-width: 576px) {
    .logo img { height: 40px; }
    .navbar-sticky .logo img { height: 34px; }
    .logo-text .company-name { font-size: 0.9rem; }
    .logo-text .company-tagline { font-size: 0.6rem; }
}

/* Desktop */
@media (min-width: 992px) {
    .logo img { height: 55px; }
    .navbar-sticky .logo img { height: 46px; }
    .logo-text .company-name { font-size: 1.2rem; }
    .logo-text .company-tagline { font-size: 0.7rem; }
    .logo-text { margin-left: 12px; }
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile slide-in menu (up to 991px) */
@media (max-width: 991px) {
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #0d1c2a, #1a2a3a);
        flex-direction: column;
        justify-content: center;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
        z-index: 1001;
        gap: 1.2rem;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        padding: 0.6rem 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: color 0.3s ease, border-color 0.3s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #87CEEB;
        border-bottom-color: #87CEEB;
    }
}

/* Desktop menu (992px+) */
@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1.8rem;
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-menu a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        position: relative;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--sky-blue);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover::before,
    .nav-menu a.active::before {
        width: 100%;
    }

    .nav-menu a:hover {
        color: var(--sky-blue);
    }
}

@media (min-width: 1200px) {
    .nav-menu { gap: 2.5rem; }
}

.btn-login {
    background: transparent;
    border: 2px solid var(--sky-blue);
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    color: white !important;
}

.btn-login:hover {
    background: var(--sky-blue);
    color: var(--deep-blue) !important;
}

.btn-login:before {
    display: none !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    cursor: pointer;
    width: 36px;
    height: 36px;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 0.5px solid rgba(255, 255, 255, 0.15);
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hide toggle on desktop */
@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
    width: 20px;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 20px;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-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;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,38,52,0.9), rgba(52,152,219,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content h1 span {
    color: var(--sky-blue);
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--medium-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--deep-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--medium-blue);
    border: 2px solid var(--medium-blue);
}

.btn-outline:hover {
    background: var(--medium-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.slider-dot.active {
    background: var(--sky-blue);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--sky-blue);
}

/* ==================== COMPANY OVERVIEW ==================== */
.overview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white), var(--light-blue));
}

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

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.overview-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52,152,219,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--medium-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Overview Image */
.overview-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-blue), transparent);
    opacity: 0.2;
    z-index: 1;
}

/* ==================== SERVICES SECTION ==================== */
.services-preview {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52,152,219,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-blue), var(--deep-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52,152,219,0.15);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--sky-blue);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--medium-blue);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
    color: var(--deep-blue);
}

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

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

.read-more {
    color: var(--medium-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--deep-blue);
    gap: 1rem;
}

/* ==================== FEATURED PROJECTS ==================== */
.featured-projects {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray), var(--light-blue));
}

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

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 300px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--navy-blue), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.project-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.project-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.project-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--medium-blue);
    border-radius: 50px;
    font-size: 0.8rem;
    color: white;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(52,152,219,0.1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52,152,219,0.1);
    border-color: var(--sky-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px dashed var(--medium-blue);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--medium-blue);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon i {
    transform: scale(1.1);
    color: var(--deep-blue);
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--navy-blue));
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.testimonials .section-title {
    color: white;
    position: relative;
    z-index: 1;
}

.testimonials .section-title:after {
    background: linear-gradient(90deg, var(--sky-blue), white);
}

.testimonials-slider {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-content {
    position: relative;
}

.testimonial-content > i {
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
    position: absolute;
    top: -20px;
    left: -20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--sky-blue);
}

.testimonial-author h4 {
    color: white;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav button:hover {
    background: var(--sky-blue);
    border-color: var(--sky-blue);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

.testimonial-dot.active {
    background: var(--sky-blue);
    transform: scale(1.2);
}

/* ==================== CALL TO ACTION ==================== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--medium-blue), var(--deep-blue));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    background-size: 30px 30px;
}

.cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
}

.cta .btn-primary {
    background: white;
    color: var(--deep-blue);
    position: relative;
    font-weight: 600;
}

.cta .btn-primary:hover {
    background: var(--sky-blue);
    color: var(--deep-blue);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--navy-blue);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

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

.footer-section h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--sky-blue);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    font-size: 1rem;
    color: var(--sky-blue);
    font-style: italic;
}

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

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--sky-blue);
    transform: translateX(5px);
}

.footer-section ul li i {
    color: var(--sky-blue);
    width: 20px;
}

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

.contact-info li i {
    margin-top: 4px;
}

.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: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sky-blue);
    transform: translateY(-3px);
}

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

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--medium-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.back-to-top:hover {
    background: var(--deep-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.4);
}

/* ==================== PAGE LOADER ==================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.1);
    border-left-color: var(--sky-blue);
    border-right-color: var(--medium-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 span {
        font-size: 1.5rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 150px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== SECTION TAGS ==================== */
.section-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--light-blue);
    color: var(--medium-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-left {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title-left:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-blue), var(--deep-blue));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ==================== ABOUT PAGE ==================== */
.company-story {
    padding: 80px 0;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--medium-blue);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--medium-blue);
}

.highlight-item h4 {
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--medium-blue);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.mission-vision-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-blue), white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-blue), var(--deep-blue));
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--medium-blue), var(--deep-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-list {
    list-style: none;
    margin-top: 1.5rem;
}

.mv-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mv-list i {
    color: var(--medium-blue);
}

/* Team Section */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52,152,219,0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to top, var(--deep-blue), transparent);
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-blue);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--medium-blue);
    color: white;
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 0.3rem;
}

.team-info .position {
    color: var(--medium-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Certifications Slider */
.certifications {
    padding: 60px 0;
    background: white;
}

.cert-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.cert-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(52,152,219,0.2);
}

.cert-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cert-item:hover img {
    filter: grayscale(0%);
}

.cert-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--deep-blue);
    font-weight: 600;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--navy-blue));
    text-align: center;
}

.about-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--deep-blue);
}

/* ==================== SERVICES PAGE ==================== */
.services-intro-section {
    padding: 60px 0;
    background: white;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 50px;
    color: var(--deep-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--medium-blue);
    border-color: var(--medium-blue);
    color: white;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

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

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.badge {
    background: var(--medium-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-process {
    padding: 80px 0;
    background: var(--light-blue);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--medium-blue), var(--deep-blue));
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--medium-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--medium-blue);
    z-index: 1;
    background: white;
}

.process-step:hover .step-number {
    background: var(--medium-blue);
    color: white;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* FAQ Section */
.service-faq {
    padding: 60px 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--light-blue);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1rem 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--medium-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem;
    max-height: 200px;
    border-top: 1px solid var(--light-blue);
}

/* ==================== GALLERY PAGE ==================== */
.gallery-filter-wrapper {
    margin: 2rem 0;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-chip {
    padding: 0.5rem 1.5rem;
    background: var(--light-blue);
    border-radius: 50px;
    color: var(--deep-blue);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-chip i {
    color: var(--medium-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,38,52,0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    color: white;
    margin-bottom: 0.3rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.overlay-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.overlay-tags .tag {
    padding: 0.2rem 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
}

.view-project-btn {
    padding: 0.5rem 1.5rem;
    background: var(--medium-blue);
    border: none;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-project-btn:hover {
    background: var(--deep-blue);
    transform: translateX(5px);
}

.project-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--navy-blue));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--sky-blue);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.stat-card .stat-label {
    color: rgba(255,255,255,0.8);
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-cards {
    padding: 60px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52,152,219,0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--medium-blue);
}

.info-icon i {
    font-size: 2rem;
    color: var(--medium-blue);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

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

.info-link {
    color: var(--medium-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.info-link:hover {
    color: var(--deep-blue);
    gap: 1rem;
}

.info-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--light-blue);
    color: var(--medium-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-main {
    padding: 60px 0;
    background: var(--light-gray);
}

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

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-header {
    margin-bottom: 2rem;
}

.form-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--light-blue);
    color: var(--medium-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--medium-blue), var(--deep-blue));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(52,152,219,0.3);
}

.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit.loading i {
    animation: spin 1s linear infinite;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quick-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quick-contact h3 {
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.quick-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-blue);
    border-radius: 10px;
}

.quick-item i {
    font-size: 1.5rem;
    color: var(--medium-blue);
}

.quick-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.quick-item strong {
    color: var(--deep-blue);
}

.social-connect {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-connect h3 {
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-faq {
    padding: 60px 0;
    background: white;
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-mini-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.faq-mini-item:hover {
    transform: translateY(-5px);
}

.faq-mini-item i {
    font-size: 2rem;
    color: var(--medium-blue);
    margin-bottom: 0.5rem;
}

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

.faq-mini-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .info-cards-grid,
    .stats-grid,
    .faq-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .mv-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards-grid,
    .stats-grid,
    .faq-mini-grid,
    .services-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* ==================== CORE VALUES SECTION - ABOUT PAGE ==================== */
.core-values {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white), var(--light-blue));
}

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

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(52,152,219,0.1);
    z-index: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--medium-blue), var(--deep-blue));
    transition: height 0.3s ease;
    z-index: -1;
}

.value-card:hover::before {
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52,152,219,0.2);
    border-color: transparent;
}

.value-card:hover * {
    color: white;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--medium-blue);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: white;
    border-color: white;
    transform: rotateY(180deg);
}

.value-icon i {
    font-size: 2.5rem;
    color: var(--medium-blue);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    color: var(--deep-blue);
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
    transition: color 0.3s ease;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.value-hover {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.value-card:hover .value-hover {
    opacity: 1;
    transform: translateY(0);
}

.value-hover span {
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.value-hover i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.value-hover:hover i {
    transform: translateX(5px);
}

/* ==================== ENHANCED FORM STYLES - CONTACT PAGE ==================== */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--deep-blue);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--light-blue);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--medium-blue);
    box-shadow: 0 0 0 4px rgba(52,152,219,0.1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--sky-blue);
}

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

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

/* Floating Label Effect */
.form-group.floating {
    position: relative;
}

.form-group.floating input,
.form-group.floating textarea,
.form-group.floating select {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.form-group.floating label {
    position: absolute;
    top: 1rem;
    left: 1.2rem;
    margin: 0;
    padding: 0;
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-group.floating.focused label,
.form-group.floating input:focus ~ label,
.form-group.floating textarea:focus ~ label,
.form-group.floating select:focus ~ label,
.form-group.floating input:not(:placeholder-shown) ~ label,
.form-group.floating textarea:not(:placeholder-shown) ~ label {
    top: 0.3rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--medium-blue);
    background: white;
    padding: 0 0.3rem;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.02);
}

.form-group.error label {
    color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.error-message i {
    font-size: 0.9rem;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.5s ease;
}

.success-message i {
    font-size: 2rem;
}

.success-message p {
    margin: 0;
    font-weight: 500;
}

/* Checkbox Style */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--medium-blue);
}

.form-checkbox label {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--medium-blue), var(--deep-blue));
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(52,152,219,0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.btn-submit.loading {
    opacity: 0.8;
    cursor: not-allowed;
}

.btn-submit.loading i {
    animation: spin 1s linear infinite;
}

/* Loading Spinner */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-blue);
}

.form-section h3 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: var(--medium-blue);
}

/* Form Tooltip */
.form-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
}

.form-tooltip i {
    color: var(--medium-blue);
    font-size: 1rem;
    cursor: help;
}

.form-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 10;
    margin-bottom: 0.5rem;
}

.form-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--deep-blue);
    margin-bottom: -5px;
}

/* Form Progress */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-blue);
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    background: white;
}

.progress-step.active {
    border-color: var(--medium-blue);
    color: var(--medium-blue);
}

.progress-step.completed {
    background: var(--medium-blue);
    border-color: var(--medium-blue);
    color: white;
}

/* Form Responsive */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem 1rem;
    }
}

/* ==================== ENHANCED CONTACT INFO CARDS ==================== */
.contact-info-cards {
    padding: 60px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52,152,219,0.1);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--medium-blue), var(--deep-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(52,152,219,0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--medium-blue);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--medium-blue);
    border-color: var(--deep-blue);
    transform: scale(1.1) rotate(5deg);
}

.info-icon i {
    font-size: 2.5rem;
    color: var(--medium-blue);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon i {
    color: white;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.info-link {
    color: var(--medium-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--deep-blue);
    gap: 1rem;
}

.info-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--light-blue), white);
    color: var(--medium-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--medium-blue);
}

/* ==================== QUICK CONTACT SECTION ==================== */
.quick-contact {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quick-contact h3 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-contact h3 i {
    color: var(--medium-blue);
}

.quick-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(52,152,219,0.1);
}

.quick-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(52,152,219,0.1);
    border-color: var(--medium-blue);
}

.quick-item i {
    font-size: 2rem;
    color: var(--medium-blue);
}

.quick-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.quick-item strong {
    color: var(--deep-blue);
    font-size: 1.1rem;
}

/* ==================== SOCIAL CONNECT SECTION ==================== */
.social-connect {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.social-connect h3 {
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-connect h3 i {
    color: var(--medium-blue);
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-btn i {
    font-size: 1.3rem;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ==================== MAP CONTAINER ==================== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid white;
}

.map-container iframe {
    display: block;
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Form validation shake */
.form-group.error input,
.form-group.error textarea {
    animation: shake 0.5s ease;
}

/* Pulse animation for badges */
.info-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52,152,219,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(52,152,219,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52,152,219,0);
    }
}

/* ==================== RESPONSIVE FIXES FOR NEW SECTIONS ==================== */
@media (max-width: 1024px) {
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
    
    .quick-item {
        padding: 1rem;
    }
    
    .quick-item i {
        font-size: 1.5rem;
    }
    
    .quick-item strong {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 1.8rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* ==================== COMPANY OVERVIEW ==================== */
.overview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white), var(--light-blue));
}

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

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.overview-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52,152,219,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--medium-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Overview Image */
.overview-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.overview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--medium-blue), transparent);
    opacity: 0.2;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   COMPLETE RESPONSIVE SYSTEM
   iPhone SE 2016 (320px) to Desktop
   ======================================== */

/* Base container */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero {
    min-height: 60vh;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .hero {
        min-height: 80vh;
        padding: 4rem 0;
    }
}

/* Hero Content */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

@media (min-width: 576px) and (max-width: 767px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .services-grid {
        gap: 1.5rem;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Projects Grid */
.projects-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Contact Grid */
.contact-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* About Grid */
.about-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Team Grid */
.team-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

@media (min-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (min-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Stats Section */
.stats-container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 480px) {
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Cards Styling */
.service-card, .project-card, .team-card, .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .service-card, .project-card, .team-card, .testimonial-card {
        padding: 1.5rem;
    }
}

.service-card:hover, .project-card:hover, .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Padding */
section {
    padding: 2rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 4rem 0;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        margin-bottom: 2.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 2rem 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 3rem 1rem;
    }
}

/* Images within cards */
.project-card img, .service-card img, .team-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .project-card img, .service-card img, .team-card img {
        margin-bottom: 1rem;
    }
}

/* Form responsiveness */
.contact-form {
    padding: 1rem;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
}

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

@media (min-width: 768px) {
    .form-group {
        margin-bottom: 1.2rem;
    }
}

/* Responsive tables */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar class for cleaner mobile */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
