/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #ffffff;
}

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

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

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
    transition-delay: 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes counterUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #e6683c, #f09433);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Remove all animations - elements stay in position */
.animate-on-scroll,
.animate-left,
.animate-right,
.animate-scale,
.text-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.animate-delay-1,
.animate-delay-2,
.animate-delay-3,
.animate-delay-4,
.animate-delay-5,
.animate-delay-6 {
    transition-delay: 0s !important;
}

/* Remove floating animation */
.floating {
    animation: none !important;
}

/* Remove pulse animation */
.pulse {
    animation: none !important;
}

/* Remove icon bounce */
.icon-bounce {
    transition: none !important;
}

.icon-bounce:hover {
    animation: none !important;
}

/* Remove shimmer effect */
.shimmer {
    background: none !important;
    animation: none !important;
}

/* Remove page loading states */
.loading {
    opacity: 1 !important;
    transition: none !important;
}

.loaded {
    opacity: 1 !important;
    animation: none !important;
}

/* Menu open state */
.menu-open {
    overflow: hidden;
}

.menu-open body {
    overflow: hidden;
}

/* Remove form focus effects */
.focused {
    transform: none !important;
    box-shadow: none !important;
}

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

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

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #000;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(230, 104, 60, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d55a2b 0%, #e07a2a 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 104, 60, 0.5);
}

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

.btn-secondary:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.4);
    height: 12vh;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(230, 104, 60, 0.05);
    transition: all 0.3s ease;
}

/* Header when scrolled (more opaque) */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(230, 104, 60, 0.2);
    transition: smooth;
}

/* Header when in hero section (transparent) */
.header.in-hero {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(230, 104, 60, 0.05);
    transition: smooths;
}

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

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

.logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.1;
    font-family: 'Arial', sans-serif;
}

.logo-text h1 .engineers {
    color: #e6683c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text h1 .ampersand {
    color: #2c3e50;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text h1 .builders {
    color: #e6683c;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-text .tagline {
    font-size: 0.75rem;
    color: #2c3e50;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
    margin-top: 4px;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

/* Hide mobile menu extra content on desktop */
.mobile-menu-extra {
    display: none;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #e6683c;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #e6683c, #f09433);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    position: relative;
    padding-top: 5rem;
    padding-left: 2rem;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    text-align: left;
    margin: 0;
    padding: 4rem 2rem 2rem 2rem;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f4a460;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
    line-height: 1.2;
}

.hero h1 {
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: left;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;

}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: left;
    line-height: 1.7;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

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

/* Performance: avoid rendering offscreen sections until needed */
.services,
.about,
.why-choose,
.why-choose-us,
.projects,
.instagram,
.cost-estimator,
.testimonials,
.contact,
.projects-gallery,
.portfolio-section,
.project-testimonials,
.our-workplace,
.certifications,
.company-stats {
    content-visibility: auto;
    contain-intrinsic-size: 1000px 800px;
}

/* Ensure hero tagline is visible on small devices by placing it at the end */
@media (max-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1.25rem 3rem 1.25rem;
        margin-top: 0; /* keep content at top on mobile */
    }

    .hero-tagline {
        order: -1; /* move above title and paragraph */
        align-self: flex-start;
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
        letter-spacing: 2px;
        z-index: 2;
    }

    .hero {
        align-items: flex-start;
        padding: calc(env(safe-area-inset-top) + 7rem) 1rem calc(env(safe-area-inset-bottom) + 6rem) 1rem; /* clear fixed header and keep room for CTA */
    }

    .hero h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .hero-buttons .btn {
        padding: 1rem 1.5rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 8vh;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 4vw;
    color: #2c3e50;
    margin-bottom: 2vh;
    font-weight: 900;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.5vw;
    color: #666;
    max-width: 60vw;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* Legacy service styles - now handled by modern service card styles above */

/* About Section */
.about {
    padding: 6rem 0;
}

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

/* Mobile About Image - Hidden by default */
.about-mobile-image {
    display: none;
}

.about-text h2 {
    margin-bottom: 2rem;
    text-align: center !important;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #000;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #e6683c;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #000;
    font-weight: 500;
}

/* About CTA Button */
.about-cta {
    margin-top: 2rem;
    text-align: left;
}

.about-cta .btn {
    background: linear-gradient(135deg, #e6683c, #f09433);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(230, 104, 60, 0.3);
    border: none;
    cursor: pointer;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 104, 60, 0.4);
    background: linear-gradient(135deg, #d55a2b, #e0852a);
}

.about-image {
    margin-top: -2rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background: #f8f9fa;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.feature:nth-child(7) {
    grid-column: 1;
    justify-self: center;
}

.feature:nth-child(8) {
    grid-column: 2;
    justify-self: center;
}

.feature:nth-child(9) {
    grid-column: 3;
    justify-self: center;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white !important;
}

.feature-content {
    flex: 1;
}

.feature h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Projects Carousel */
.projects-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.carousel-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-prev, .carousel-next {
    background: rgba(230, 104, 60, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(230, 104, 60, 1);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

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

.carousel-indicator.active {
    background: #e6683c;
    transform: scale(1.2);
}

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

/* Statistics Section */
.stats-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
    border-radius: 0;
    margin-top: 3rem;
    box-shadow: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #F5653B;
    margin-bottom: 1rem;
    text-shadow: 0 3px 6px rgba(245, 101, 59, 0.3);
    line-height: 1;
    letter-spacing: -1px;
    font-family: 'Inter', sans-serif;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 1rem;
    color: #D2691E;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.cta-button {
    text-align: center;
    margin-top: 2rem;
}

.cta-button .btn {
    background: linear-gradient(135deg, #F5653B, #D2691E);
    color: white;
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 101, 59, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.cta-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 101, 59, 0.5);
    background: linear-gradient(135deg, #E55A2B, #C4621A);
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .projects-carousel {
        margin: 0 auto 2rem;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .carousel-content {
        padding: 2rem 1rem 1.5rem;
    }
    
    .carousel-content h3 {
        font-size: 1.8rem;
    }
    
    .carousel-content p {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .cta-button .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .cta-button .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    
    .carousel-container {
        height: 250px;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
    }
    
    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-content > div:last-child {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 6rem 0;
    }
    
    .contact .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-item i {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-container {
        height: 350px;
        padding: 0;
    }
    
    .map-container iframe {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        gap: 0.8rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .map-container {
        height: 300px;
        padding: 0;
    }
    
    .map-container iframe {
        height: 100%;
    }
}
.projects {
    padding: 6rem 0;
}

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

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

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

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

.project-overlay h3 {
    margin-bottom: 0.5rem;
}

/* Instagram Section */
.instagram {
    padding: 6rem 0;
    background: #f8f9fa;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.instagram-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.instagram-cta {
    text-align: center;
}

/* Instagram Grid Responsive */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 0.8rem;
    }
}

/* Cost Estimator Section */
.cost-estimator {
    padding: 6rem 0;
}

.estimator-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e6683c;
    background: white;
    box-shadow: 0 0 0 4px rgba(230, 104, 60, 0.15);
    transform: translateY(-2px);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
    color: #e6683c;
}

.estimate-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: none;
}

.estimate-result.show {
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #000;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #667eea;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Contact Content Layout */
.contact-content {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Styling */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 104, 60, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 104, 60, 0.3);
}

.contact-item i {
    font-size: 2rem;
    color: #e6683c;
    margin-right: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 104, 60, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(230, 104, 60, 0.3);
    flex-shrink: 0;
}

.contact-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Right Column Content */
.contact-content > div:last-child {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 0;
    height: 400px;
}

.map-container iframe {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Form Section Styling */
.form-section h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Contact Form Styling */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(230, 104, 60, 0.1);
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e6683c;
    background: white;
    box-shadow: 0 0 0 3px rgba(230, 104, 60, 0.1);
    transform: translateY(-2px);
}

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

.contact-form .btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, #e6683c, #f09433);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(230, 104, 60, 0.3);
}

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 104, 60, 0.4);
    background: linear-gradient(135deg, #d55a2b, #e0852a);
}

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

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e6683c, #f09433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #000;
    margin: 0;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(230, 104, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e6683c 0%, #f09433 100%);
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


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

.fab-btn.call {
    background: #667eea;
}


/* Form Validation Styles */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.form-group input:focus.error,
.form-group textarea:focus.error,
.form-group select:focus.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}

.form-group input:focus.valid,
.form-group textarea:focus.valid,
.form-group select:focus.valid {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.3);
}

/* Form Loading States */
.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-loading button[type="submit"] {
    background: #95a5a6;
    cursor: not-allowed;
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Popup Form Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.popup-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
}

.close-btn {
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #e6683c;
}

.popup-form {
    padding: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e6683c;
    background: white;
    box-shadow: 0 0 0 3px rgba(230, 104, 60, 0.1);
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.form-actions .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, #e6683c, #f09433);
    color: white;
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 104, 60, 0.3);
}

.form-actions .btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e0e0e0;
}

.form-actions .btn-secondary:hover {
    background: #e9ecef;
    border-color: #ccc;
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .popup-header h3 {
        font-size: 1.5rem;
    }
    
    .popup-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Page Header */
.page-header {
    padding: 200px 0 160px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('hero.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    loading: lazy;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Active Navigation */
.nav-menu a.active {
    color: #e6683c;
    font-weight: 600;
}

/* Services Page Styles */
.services-overview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(230, 104, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 148, 51, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.services-overview .container {
    position: relative;
    z-index: 2;
}

.services-overview .section-header {
    margin-bottom: 6rem;
}

.services-overview .section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-overview .section-header p {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

.service-card.detailed {
    padding: 0;
    text-align: left;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 104, 60, 0.1);
    position: relative;
}

.service-card.detailed:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 104, 60, 0.3);
}

.service-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0 2rem;
}

.service-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(230, 104, 60, 0.1);
    position: relative;
    padding-left: 2.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: #e6683c;
    padding-left: 3rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e6683c;
    font-weight: bold;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.service-price {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(230, 104, 60, 0.1);
}

.service-price span {
    font-weight: 700;
    color: #e6683c;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Why Choose Services */
.why-choose-services {
    padding: 6rem 0;
}

/* About Page Styles */
.company-story {
    padding: 6rem 0;
}

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

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission & Values */
.mission-values {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

/* Company Stats */
.company-stats {
    padding: 2rem 0;
    background: white;
    color: #2c3e50;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e6683c;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Company Stats Mobile Responsive */
@media (max-width: 768px) {
    .company-stats .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .company-stats .stat-number {
        font-size: 2rem;
    }
    
    .company-stats .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .company-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .company-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .company-stats .stat-label {
        font-size: 0.7rem;
    }
}

/* Timeline */
.timeline {
    padding: 6rem 0;
    background: #f8f9fa;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e6683c;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 2rem);
    text-align: left;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #e6683c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(230, 104, 60, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    max-width: 45%;
    position: relative;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Our Workplace Section */
.our-workplace {
    padding: 6rem 0;
    background: #f8f9fa;
}

.title-separator {
    width: 60px;
    height: 4px;
    background: #e6683c;
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

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

.workplace-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(230, 104, 60, 0.1);
}

.workplace-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 104, 60, 0.3);
}

.workplace-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
}

.workplace-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.workplace-item:hover .workplace-image img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.workplace-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2.5rem 2rem 2rem;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.workplace-item:hover .workplace-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}

.workplace-overlay h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.workplace-overlay p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
    color: white;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

/* Responsive Our Workplace */
@media (max-width: 768px) {
    .workplace-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .workplace-image {
        height: 220px;
    }
    
    .workplace-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .workplace-overlay h3 {
        font-size: 1.2rem;
    }
    
    .workplace-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .workplace-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .workplace-image {
        height: 200px;
    }
    
    .workplace-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .workplace-overlay h3 {
        font-size: 1.1rem;
    }
    
    .workplace-overlay p {
        font-size: 0.8rem;
    }
}

/* Certifications */
.certifications {
    padding: 6rem 0;
    background: #f8f9fa;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.cert-item i {
    font-size: 3rem;
    color: #e6683c;
    margin-bottom: 1rem;
}

.cert-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Projects Page Styles */
.project-filter {
    padding: 2rem 0;
    background: #f8f9fa;
}

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

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e6683c;
    background: transparent;
    color: #e6683c;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #e6683c;
    color: white;
}

.projects-showcase {
    padding: 4rem 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-section::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e6683c" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23f09433" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e6683c" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23f09433" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23e6683c" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.portfolio-section .section-header {
    position: relative;
    z-index: 2;
}

.portfolio-section .section-header h2 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
    letter-spacing: 1px;
    line-height: 1.2;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.portfolio-section .section-header p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    animation: slideInUp 1s ease-out 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Projects Gallery */
.projects-gallery {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.projects-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(230, 104, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(240, 148, 51, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.justified-gallery {
    column-count: 4;
    column-gap: 20px;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
    display: inline-block;
    width: 100%;
    opacity: 1;
    transform: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
    display: none;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .justified-gallery {
        column-count: 3;
        column-gap: 15px;
    }
}

@media (max-width: 768px) {
    .justified-gallery {
        column-count: 2;
        column-gap: 10px;
    }
    
    .gallery-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .justified-gallery {
        column-count: 1;
        column-gap: 0;
    }
    
    .gallery-item {
        margin-bottom: 10px;
    }
}

.project-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.project-details span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.project-details i {
    margin-right: 0.5rem;
}

.project-stats {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.project-stats::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: moveDots 10s linear infinite;
}

@keyframes moveDots {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.project-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.project-stats .stat-item {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    animation: statItemAppear 1s ease-out forwards;
}

.project-stats .stat-item:nth-child(1) { animation-delay: 0.2s; }
.project-stats .stat-item:nth-child(2) { animation-delay: 0.4s; }
.project-stats .stat-item:nth-child(3) { animation-delay: 0.6s; }
.project-stats .stat-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes statItemAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-stats .stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-stats .stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: numberGlow 2s ease-in-out infinite alternate;
}

@keyframes numberGlow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.3); }
}

.project-stats .stat-label {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.project-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(230, 104, 60, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(240, 148, 51, 0.05) 0%, transparent 50%);
    animation: testimonialFloat 8s ease-in-out infinite;
}

@keyframes testimonialFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
}

.project-testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.project-testimonials .testimonial {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: testimonialAppear 1s ease-out forwards;
}

.project-testimonials .testimonial:nth-child(1) { animation-delay: 0.3s; }
.project-testimonials .testimonial:nth-child(2) { animation-delay: 0.6s; }
.project-testimonials .testimonial:nth-child(3) { animation-delay: 0.9s; }

@keyframes testimonialAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-testimonials .testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e6683c 0%, #f09433 100%);
}

.project-testimonials .testimonial:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(230, 104, 60, 0.2);
}

.project-testimonials .testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.project-testimonials .testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: #e6683c;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.project-testimonials .testimonial-author h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-testimonials .testimonial-author span {
    color: #e6683c;
    font-weight: 600;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(230, 104, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(240, 148, 51, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(230, 104, 60, 0.02) 50%, transparent 70%);
    z-index: 1;
}

.team-profile {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(230, 104, 60, 0.1);
    backdrop-filter: blur(10px);
}

.team-profile:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 15px 40px rgba(230, 104, 60, 0.1);
    border-color: rgba(230, 104, 60, 0.2);
}

.profile-content {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile-info {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    border: 1px solid rgba(230, 104, 60, 0.1);
    backdrop-filter: blur(10px);
}

.profile-info h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.profile-subtitle {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-role {
    color: #e6683c;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.profile-image {
    flex: 1;
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(230, 104, 60, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-self: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.05) contrast(1.1);
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 12px 35px rgba(230, 104, 60, 0.15);
    border-color: rgba(230, 104, 60, 0.4);
}

.profile-image:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.15);
}

/* Team service grid styles - different from main services page */
.team-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 2rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.team-section .service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(230, 104, 60, 0.1);
}

.team-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 104, 60, 0.3);
}

.team-section .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.team-section .service-card h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.team-section .service-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Team */
@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        align-items: center;
    }
    
    .profile-info {
        padding: 2rem;
        order: 2;
        width: 100%;
        text-align: center;
    }
    
    .profile-image {
        height: 300px;
        order: 1;
        width: 100%;
        max-width: 300px;
    }
    
    .profile-info h3 {
        font-size: 2rem;
    }
    
    .profile-subtitle {
        font-size: 1.5rem;
    }
    
    .profile-role {
        font-size: 1rem;
    }
    
    .team-section .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .team-section .service-card {
        padding: 1.5rem;
    }
}

/* Achievements Timeline Section */
.achievements-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 104, 60, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(240, 148, 51, 0.06) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(230, 104, 60, 0.02) 50%, transparent 70%);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #e6683c 0%, #f09433 50%, #e6683c 100%);
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(230, 104, 60, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(50px);
    animation: timelineItemAppear 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }

@keyframes timelineItemAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 3rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 3rem);
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(230, 104, 60, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 3;
}

.timeline-item:hover .marker-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(230, 104, 60, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.9);
}

.marker-icon i {
    color: white;
    font-size: 1.5rem;
}

.timeline-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(230, 104, 60, 0.1);
    backdrop-filter: blur(10px);
}

.timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12), 0 10px 30px rgba(230, 104, 60, 0.1);
    border-color: rgba(230, 104, 60, 0.2);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-year {
    display: inline-flex;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    padding: 0.8rem;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(230, 104, 60, 0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    box-sizing: border-box;
}

.timeline-year::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.timeline-year:hover::before {
    left: 100%;
}

.timeline-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.achievement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #e6683c;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 2px solid #e6683c;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(230, 104, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.tag:hover {
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 104, 60, 0.4);
    border-color: #f09433;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 4rem;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 2rem;
        transform: translateX(-50%);
    }
    
    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .timeline-content {
        padding: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
}

/* Join Our Team Section */
.join-team-section {
    padding: 8vh 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.join-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 104, 60, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(240, 148, 51, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.join-team-content {
    position: relative;
    z-index: 2;
}

.join-team-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    margin-bottom: 6vh;
}

.join-team-text h3,
.join-team-form h3,
.open-positions h3 {
    font-size: 2.5vw;
    color: #2c3e50;
    margin-bottom: 2vh;
    font-weight: 600;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5vh;
    font-size: 1.2vw;
    color: #666;
    line-height: 1.6;
}

.benefits-list li i {
    color: #e6683c;
    margin-right: 1vw;
    font-size: 1.5vw;
}

.join-team-form {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 3vh 2.5vw;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(230, 104, 60, 0.1);
    backdrop-filter: blur(10px);
}

.resume-form .form-group {
    margin-bottom: 2vh;
}

.resume-form input,
.resume-form select,
.resume-form textarea {
    width: 100%;
    padding: 1.5vh 1.5vw;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1vw;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.resume-form input:focus,
.resume-form select:focus,
.resume-form textarea:focus {
    outline: none;
    border-color: #e6683c;
    box-shadow: 0 0 0 4px rgba(230, 104, 60, 0.15);
    transform: translateY(-2px);
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5vh 2vw;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1vw;
    margin-bottom: 1vh;
}

.file-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 104, 60, 0.3);
}

.file-label i {
    margin-right: 1vw;
    font-size: 1.2vw;
}

#resume {
    display: none;
}

.resume-form .btn {
    width: 100%;
    padding: 1.5vh 2vw;
    font-size: 1.1vw;
    font-weight: 600;
    margin-top: 1vh;
}

.open-positions {
    margin-top: 4vh;
}

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

.position-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 2.5vh 2vw;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(230, 104, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.position-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 8px 25px rgba(230, 104, 60, 0.1);
    border-color: rgba(230, 104, 60, 0.2);
}

.position-card h4 {
    font-size: 1.4vw;
    color: #2c3e50;
    margin-bottom: 1vh;
    font-weight: 700;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.position-type {
    color: #e6683c;
    font-weight: 600;
    font-size: 0.9vw;
    margin-bottom: 0.5vh;
}

.position-location {
    color: #666;
    font-size: 0.9vw;
    margin-bottom: 1vh;
}

.position-description {
    color: #666;
    font-size: 1vw;
    line-height: 1.5;
    margin-bottom: 1.5vh;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5vw;
}

.position-skills .skill-tag {
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    padding: 0.3vh 0.8vw;
    border-radius: 15px;
    font-size: 0.8vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Join Team */
@media (max-width: 768px) {
    .join-team-info {
        grid-template-columns: 1fr;
        gap: 4vh;
        margin-bottom: 8vh;
    }
    
    .join-team-section {
        padding: 6vh 0;
    }
    
    .join-team-text h3,
    .join-team-form h3,
    .open-positions h3 {
        font-size: 6vw;
    }
    
    .section-header h2 {
        font-size: 6vw;
    }
    
    .section-header p {
        font-size: 3.5vw;
    }
    
    .benefits-list li {
        font-size: 2.8vw;
        margin-bottom: 2vh;
    }
    
    .benefits-list li i {
        font-size: 3.2vw;
        margin-right: 2vw;
    }
    
    .resume-form input,
    .resume-form select,
    .resume-form textarea {
        font-size: 2vw;
    }
    
    .file-label {
        font-size: 2vw;
    }
    
    .resume-form .btn {
        font-size: 2vw;
    }
    
    .position-card h4 {
        font-size: 3vw;
    }
    
    .position-type,
    .position-location {
        font-size: 2vw;
    }
    
    .position-description {
        font-size: 2vw;
    }
    
    .position-skills .skill-tag {
        font-size: 1.5vw;
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 104, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e6683c 0%, #f09433 100%);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #e6683c;
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 104, 60, 0.3);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(230, 104, 60, 0.4);
}

.contact-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    color: #000;
    word-break: break-all;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info-card span {
    color: #e6683c;
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(230, 104, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e6683c 0%, #f09433 100%);
}

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

.form-header h2 {
    margin-bottom: 1rem;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

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

.map-container h3 {
    padding: 2rem 2rem 1rem;
    margin: 0;
    color: #333;
}

.map-placeholder {
    height: 200px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e6683c;
}

.map-info {
    padding: 2rem;
}

.map-info h4 {
    margin-bottom: 1rem;
    color: #333;
}

.office-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #000;
}

.feature i {
    color: #e6683c;
}

/* Google Maps Section */
.map-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.map-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.map-info-item i {
    color: #e6683c;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    background: rgba(230, 104, 60, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-info-item h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.map-info-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive Contact Info */
@media (max-width: 1200px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
    }
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .map-info-item {
        padding: 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    border-bottom: none;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-question h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-question i {
    color: #e6683c;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    background: rgba(230, 104, 60, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(-10px);
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    padding-top: 1rem;
}

/* Emergency Contact */
.emergency-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
}

.emergency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.emergency-info h2 {
    margin-bottom: 1rem;
}

.emergency-contact-info {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-item i {
    font-size: 1.5rem;
}

.emergency-item h3 {
    margin-bottom: 0.5rem;
}

.emergency-item p {
    margin: 0;
    opacity: 0.9;
}

/* Team Page Styles */
.leadership-team {
    padding: 6rem 0;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.member-title {
    color: #e6683c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.6;
}

.member-credentials {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.member-credentials span {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #e6683c;
    font-weight: 500;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6683c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: #e6683c;
    color: white;
}

.department-teams {
    padding: 6rem 0;
    background: #f8f9fa;
}

.department-section {
    margin-bottom: 4rem;
}

.department-section h3 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.8rem;
}

.team-values {
    padding: 6rem 0;
}

.join-team {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.join-text h2 {
    margin-bottom: 1.5rem;
}

.join-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefits h3 {
    margin-bottom: 1rem;
    color: #333;
}

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

.benefits li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e6683c;
    font-weight: bold;
}

.join-cta {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.join-cta h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.job-listings {
    margin-bottom: 2rem;
}

.job-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.job-item:last-child {
    border-bottom: none;
}

.job-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.job-item p {
    margin: 0;
    color: #000;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

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

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

/* Prevent horizontal overflow on mobile */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Show mobile about image */
    .about-mobile-image {
        display: block;
        text-align: center;
        margin: 2rem 0;
    }
    
    .about-mobile-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Hide desktop about image on mobile */
    .about-image {
        display: none;
    }
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
        color: #e6683c;
    }
    
    .logo-text h1 .ampersand {
        font-size: 1.2rem;
    }
    
    .logo-text .tagline {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 1000;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    /* Mobile Menu Extra Content */
    .mobile-menu-extra {
        display: block;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #e0e0e0;
    }
    
    .mobile-menu-section {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .mobile-menu-section h3 {
        color: #2c3e50;
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .mobile-menu-section p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .mobile-menu-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .mobile-menu-buttons .btn {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .mobile-contact-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-contact-info .contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 0.8rem;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-contact-info .contact-item:hover {
        background: #e9ecef;
        transform: translateY(-2px);
    }
    
    .mobile-contact-info .contact-item i {
        color: #e6683c;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }
    
    .mobile-contact-info .contact-item span {
        color: #2c3e50;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .mobile-social-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .mobile-social-links a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        color: #2c3e50;
    }
    
    .mobile-social-links a:hover {
        background: #e6683c;
        color: white;
        transform: translateY(-2px);
    }
    
    .mobile-social-links a i {
        font-size: 1.5rem;
        color: #e6683c;
        transition: color 0.3s ease;
    }
    
    .mobile-social-links a:hover i {
        color: white;
    }
    
    .mobile-social-links a span {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    /* Smaller mobile screens */
    @media (max-width: 480px) {
        .mobile-menu-section h3 {
            font-size: 1.1rem;
        }
        
        .mobile-menu-section p {
            font-size: 0.85rem;
        }
        
        .mobile-menu-buttons .btn {
            padding: 0.7rem 1.2rem;
            font-size: 0.85rem;
        }
        
        .mobile-contact-info .contact-item {
            padding: 0.6rem;
        }
        
        .mobile-contact-info .contact-item span {
            font-size: 0.8rem;
        }
        
        .mobile-social-links {
            grid-template-columns: 1fr;
            gap: 0.8rem;
        }
        
        .mobile-social-links a {
            padding: 0.8rem;
        }
        
        .mobile-social-links a i {
            font-size: 1.3rem;
        }
        
        .mobile-social-links a span {
            font-size: 0.75rem;
        }
    }
    
    .hero {
        padding: 0 1rem 4rem 1rem;
        height: 100vh;
        min-height: 600px;
        width: 100%;
        overflow-x: hidden;
        align-items: center;
        justify-content: center;
        padding-top: 15vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        max-width: 100%;
        margin-bottom: 2rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .hero p {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        text-align: left;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 2rem auto 0 !important;
    }
    
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .why-choose {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .feature {
        width: 100%;
        max-width: 100%;
    }
    
    .projects {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .instagram {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .cost-estimator {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .testimonials {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .contact {
        padding: 4rem 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text {
        order: 1;
    }
    
    .story-image {
        order: 2;
    }
    
    .story-text h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .story-image img {
        height: 300px;
        border-radius: 10px;
    }
    
    .company-story {
        padding: 3rem 0;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .about-cta {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .about-cta .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .map-container {
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-form .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .form-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 0.8rem;
        font-weight: 700;
    }
    
    .form-header p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.6;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.2rem;
    }
    
    .contact-form label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #2c3e50;
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        border: 2px solid #e1e5e9;
        border-radius: 12px;
        background: #f8f9fa;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #e6683c;
        background: white;
        box-shadow: 0 0 0 3px rgba(230, 104, 60, 0.1);
        transform: translateY(-1px);
    }
    
    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .contact-form .btn {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 12px;
        background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 8px 25px rgba(230, 104, 60, 0.3);
        width: 100%;
    }
    
    .contact-form .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(230, 104, 60, 0.4);
        background: linear-gradient(135deg, #d55a2b 0%, #e0852a 100%);
    }
    
    .checkbox-group {
        margin: 1.5rem 0;
    }
    
    .checkbox-label {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-size: 0.85rem;
        color: #666;
        line-height: 1.5;
    }
    
    .checkbox-label input[type="checkbox"] {
        margin-right: 0.8rem;
        width: 18px;
        height: 18px;
        accent-color: #e6683c;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .floating-actions {
        right: 20px;
        bottom: 20px;
    }
    
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 2rem;
    }
    
    .map-wrapper {
        height: 350px;
        order: 1;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .map-info {
        display: none;
    }
    
    .contact-form-section {
        padding: 4rem 0;
    }
    
    .map-section {
        padding: 4rem 0;
    }
    
    .project-testimonials {
        padding: 5rem 0;
    }
    
    .project-testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .project-testimonials .testimonial {
        padding: 2.5rem;
        margin: 0 0.5rem;
    }
    
    .project-testimonials .testimonial-content p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .project-testimonials .testimonial-content p::before {
        font-size: 3.5rem;
        top: -18px;
        left: -8px;
    }
    
    .project-testimonials .testimonial-author h4 {
        font-size: 1.2rem;
    }
    
    .project-testimonials .testimonial-author span {
        font-size: 0.95rem;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero {
        padding: 0 0.5rem 3rem 0.5rem;
        min-height: 500px;
        width: 100%;
        overflow-x: hidden;
        align-items: center;
        justify-content: center;
        padding-top: 12vh;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 1.2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 0.85rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        text-align: left;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        max-width: 100%;
        text-align: center;
    }
    
    .services {
        padding: 3rem 0;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .why-choose {
        padding: 3rem 0;
    }
    
    .projects {
        padding: 3rem 0;
    }
    
    .instagram {
        padding: 3rem 0;
    }
    
    .cost-estimator {
        padding: 3rem 0;
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 0.5rem !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 1.5rem auto 0 !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100%;
        width: 100%;
    }
    
    .service-card,
    .feature {
        width: 100%;
        max-width: 100%;
    }
    
    .feature:nth-child(7) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 300px;
    }
    
    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .project-testimonials {
        padding: 4rem 0;
    }
    
    .project-testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-testimonials .testimonial {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .project-testimonials .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .project-testimonials .testimonial-content p::before {
        font-size: 3rem;
        top: -15px;
        left: -5px;
    }
    
    .project-testimonials .testimonial-author h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .project-testimonials .testimonial-author span {
        font-size: 0.9rem;
    }
    
    .project-testimonials .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .project-testimonials .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-cta {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .about-cta .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-header {
        margin-bottom: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }
    
    .form-header p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .contact-form .form-row {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
    
    .contact-form label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    .contact-form textarea {
        min-height: 100px;
    }
    
    .contact-form .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 0.6rem;
    }
    
    .map-wrapper {
        height: 300px;
        border-radius: 12px;
    }
    
    .map-info {
        display: none;
    }
    
    .contact-info-card {
        padding: 1.5rem;
        text-align: center;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .contact-info-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem;
        background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(230, 104, 60, 0.3);
    }
    
    .contact-icon i {
        font-size: 1.8rem;
        color: white;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        color: #2c3e50;
        font-weight: 700;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .contact-info-card span {
        font-size: 0.8rem;
        color: #e6683c;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
        color: #e6683c;
    }
    
    .logo-text h1 .ampersand {
        font-size: 1rem;
    }
    
    .logo-text .tagline {
        font-size: 0.65rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature:nth-child(7),
    .feature:nth-child(8),
    .feature:nth-child(9) {
        grid-column: 1;
        justify-self: center;
        max-width: 100%;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .timeline-container::before {
        left: 2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 4rem;
        margin-right: 0;
        text-align: left;
        max-width: calc(100% - 4rem);
    }
    
    .timeline-year {
        left: 2rem;
        transform: translateX(-50%);
    }
}

/* Modern Service Card Styles - 2 Rows × 3 Columns Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(230, 104, 60, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e6683c 0%, #f09433 100%);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 104, 60, 0.3);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.service-content {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 2rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(230, 104, 60, 0.4);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(230, 104, 60, 0.5);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0 2rem;
    margin: 0 0 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    color: #555;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(230, 104, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-features li:hover {
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(230, 104, 60, 0.3);
}

.service-features li:hover::before {
    transform: scaleY(1);
}

.service-features li i {
    color: #e6683c;
    margin-right: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-features li:hover i {
    color: white;
    transform: scale(1.2);
}

.service-cta {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-cta .btn {
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.service-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-cta .btn:hover::before {
    left: 100%;
}

.service-cta .btn-primary {
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(230, 104, 60, 0.3);
}

.service-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 104, 60, 0.4);
}

.service-cta .btn-secondary {
    background: transparent;
    color: #e6683c;
    border: 2px solid #e6683c;
}

.service-cta .btn-secondary:hover {
    background: linear-gradient(135deg, #e6683c 0%, #f09433 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 104, 60, 0.3);
}

/* Responsive Service Cards - 2×3 Grid System */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 6rem 0;
    }
    
    .services-overview .section-header h2 {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .services-overview .section-header p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: -30px auto 1.5rem;
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .service-description {
        margin: 0 1.5rem 1.5rem;
        padding: 1.5rem;
    }
    
    .service-features {
        padding: 0 1.5rem;
    }
    
    .service-features li {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .service-cta {
        padding: 0 1.5rem 1.5rem;
    }
    
    .service-cta .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-overview {
        padding: 4rem 0;
    }
    
    .services-overview .section-header h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .services-overview .section-header p {
        font-size: 1rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin: -28px auto 1.2rem;
        font-size: 1.3rem;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }
    
    .service-content {
        padding: 0 1rem 1rem;
    }
    
    .service-features {
        padding: 0 1rem;
    }
    
    .service-features li {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .service-cta {
        padding: 0 1rem 1rem;
    }
    
    .service-cta .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Gradient Animation Keyframes */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
