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

:root {
    --primary-color: #FF6B00;    /* Orange from logo */
    --primary-dark: #E65000;
    --accent-color: #DAA520;      /* Gold accent */
    --secondary-color: #4A3728;   /* Darker brown */
    --text-color: #1A1A1A;       /* Main heading color */
    --text-secondary: #4A4A4A;   /* Subheading color */
    --text-light: #4A4A4A;
    --white: #ffffff;
    --off-white: #F9F9F9;
    --light-bg: #FDF5E6;         /* Light cream background */
    --gradient-overlay: linear-gradient(45deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
    --header-height-desktop: 90px;  /* Desktop header height */
    --header-height-mobile: 87px;   /* Mobile header height */
}

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

/* No scroll class for mobile menu */
body.no-scroll {
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(255,255,255,0.95);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

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

.logo {
    height: 65px;
    position: relative;
    transition: all 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: translateY(-2px);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-links a.active::before,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white) !important;
    padding: 0.9rem 1.8rem !important;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.nav-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(255,107,0,0.15);
}

.nav-cta:hover::before {
    transform: translateX(100%);
}

/* Mobile menu icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform-origin: left;
}

.hamburger.active span:first-child {
    transform: rotate(45deg);
    width: 28px;
}

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

.hamburger.active span:last-child {
    transform: rotate(-45deg);
    width: 28px;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to right, rgba(139, 69, 19, 0.98), rgba(139, 69, 19, 0.92)), url('./images/Background2.png');
    background-size: cover;
    background-position: center;
    z-index: 1001;
    overflow: hidden;
    transition: height 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    height: 100vh;
}

.mobile-menu-content {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    transition-delay: 0.2s;
    width: 100%;
    max-width: 320px;
    padding-top: 30px; /* Add padding to the top */
}

.mobile-menu-overlay.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content .mobile-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.mobile-menu-content .mobile-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-content li {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.mobile-menu-content a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    display: block;
    padding: 0.6rem 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

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

.mobile-menu-content a:hover {
    color: var(--accent-color);
}

.mobile-menu-content a:hover::before,
.mobile-menu-content a.active::before {
    width: 100px;
    left: calc(50% - 50px);
}

.mobile-menu-content a.active {
    color: var(--accent-color);
}

.mobile-menu-footer {
    margin-top: 3rem;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mobile-social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.mobile-contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .home-hero {
        padding-top: 110px; /* Increased padding for better spacing */
    }
}

@media (max-width: 768px) {
    /* Reduce header height on mobile for better proportions */
    .navbar {
        padding: 1rem 0;
    }
    
    .home-hero {
        padding-top: 140px; /* Further increased padding for smaller screens */
        min-height: calc(100vh - var(--header-height-mobile));
        align-items: flex-start;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        margin-top: 2.5rem; /* Increased margin for better spacing */
    }
    
    .logo {
        height: 55px; /* Slightly smaller logo on mobile */
    }
    
    .hamburger {
        margin-right: 10px; /* Add some space on the right side */
    }
    
    /* Mobile menu logo adjustments */
    .mobile-menu-content .mobile-logo img {
        height: 60px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 1rem;
        margin-top: 0.5rem;
    }
    
    .stat-item {
        padding-right: 1.5rem;
    }
    
    .stat-item:not(:last-child)::after {
        right: 0.5rem;
        height: 25px;
    }
    
    .stat-number {
        font-size: 2.6rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .home-hero {
        padding-top: 150px; /* Maximum padding for smallest screens */
    }
    
    .nav-container {
        padding: 0 1rem; /* Smaller padding on very small screens */
    }
    
    .logo {
        height: 50px; /* Even smaller logo on very small screens */
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
        padding: 1rem 0.75rem;
        width: 100%;
    }
    
    .stat-item {
        flex: 0 0 auto;
        width: auto;
        padding-right: 0;
        margin-right: 0;
        text-align: center;
    }
    
    /* Remove dividers on mobile for better spacing */
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.4rem;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.9rem;
        text-align: center;
        white-space: nowrap;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('./images/6CE05DD4-C923-4B17-A1DE-6782FB4AB82B.PNG') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px; /* Added base padding for all screen sizes */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0.75) 100%
    );
    backdrop-filter: blur(10px);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    position: relative;
}

.hero-text-container {
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
    position: relative;
}

.hero-text-container::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    animation: lineGrow 1s forwards;
    animation-delay: 0.8s;
}

@keyframes lineGrow {
    to {
        height: 100%;
    }
}

.hero-title {
    font-family: var(--heading-font);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0.2em;
    left: 0;
    width: 100%;
    height: 0.2em;
    background: rgba(255, 107, 0, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
}

.hero-cta-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.primary-btn:hover::before {
    transform: translateX(100%);
}

.secondary-btn {
    background: transparent;
    color: var(--text-color);
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--text-color);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.secondary-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    border-color: transparent;
}

.secondary-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.6s;
    position: relative;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    padding-right: 2rem;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    opacity: 0;
    animation: fadeInUp 1s forwards, bounce 2s infinite;
    animation-delay: 1s;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

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

/* About Section */
.about {
    padding: 8rem 2rem;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateY(20px);
}

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

.about .section-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    padding-left: 45px;
}

.about .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.about .section-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    font-weight: 300;
    line-height: 1.8;
    position: relative;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border: 1px solid rgba(218, 165, 32, 0.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature:hover::before {
    opacity: 0.95;
}

.feature i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    transform: scale(1);
}

.feature:hover i {
    color: white;
    transform: scale(1.2) rotateY(180deg);
}

.feature h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature:hover h3 {
    color: white;
    transform: translateY(5px);
}

.feature p {
    display: none;
}

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

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

.bounce-effect {
    animation: bounce 0.5s ease;
}

.feature:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.feature:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.feature:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature {
        padding: 2rem 1.2rem;
        min-height: 180px;
    }
    
    .feature i {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .feature h3 {
        font-size: 1.25rem;
    }
    
    .feature:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .feature {
        padding: 2.2rem 1.5rem;
        min-height: 180px;
        max-width: 85%;
        margin: 0 auto;
    }
    
    .feature i {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
    
    .feature:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 380px) {
    .feature {
        padding: 2rem 1.2rem;
        min-height: 160px;
        max-width: 100%;
    }
    
    .feature i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature h3 {
        font-size: 1.2rem;
    }
}

/* Services Section */
.services {
    padding: 10rem 0;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.service-card:nth-child(even) {
    margin-top: 2rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 0, 0.05) 0%,
        rgba(218, 165, 32, 0.05) 100%
    );
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
}

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

.services-image-container {
    position: relative;
    height: 700px;
}

.services-image-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.services-grid-item {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-main-image {
    width: 60%;
    height: 80%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.services-top-image {
    width: 45%;
    height: 45%;
    left: 0;
    top: 0;
    z-index: 2;
}

.services-bottom-image {
    width: 45%;
    height: 45%;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.projects-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 25px 50px rgba(218, 165, 32, 0.25);
    animation: pulse 3s ease-in-out infinite;
}

.projects-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.projects-badge .number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.projects-badge .label {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media (max-width: 1200px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .services-grid {
        max-width: 800px;
        margin: 0 auto;
    }

    .services-image-container {
        height: 600px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 6rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card:nth-child(even) {
        margin-top: 0;
    }

    .services-image-container {
        height: 500px;
    }

    .projects-badge {
        width: 150px;
        height: 150px;
        padding: 1.5rem;
    }

    .projects-badge .number {
        font-size: 3rem;
    }
}

/* Why Choose Us Section */
.why-us {
    padding: 10rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.why-us .section-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    padding-left: 45px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.why-us .section-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--text-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.why-us .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.why-us-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    animation: cardAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.why-us-card:nth-child(1) { animation-delay: 0.3s; }
.why-us-card:nth-child(2) { animation-delay: 0.4s; }
.why-us-card:nth-child(3) { animation-delay: 0.5s; }
.why-us-card:nth-child(4) { animation-delay: 0.6s; }

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

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(255, 107, 0, 0.05) 0%,
        rgba(218, 165, 32, 0.05) 100%
    );
    opacity: 0;
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(255, 107, 0, 0.1);
}

.why-us-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.why-us-card:hover .card-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(80%, 80%);
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.why-us-card:hover .card-icon {
    transform: rotate(-10deg);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.2);
}

.why-us-card:hover .card-icon i {
    transform: scale(1.1);
}

.why-us-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.why-us-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.why-us-cta {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.7s;
}

.why-us-cta .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.why-us-cta .primary-btn i {
    transition: transform 0.3s ease;
}

.why-us-cta .primary-btn:hover i {
    transform: translateX(5px);
}

.why-us-image-container {
    position: relative;
    height: 700px;
    perspective: 1000px;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards 0.4s;
}

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

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-stack-image {
    width: 80%;
    height: 90%;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(2deg);
    z-index: 1;
}

.accent-stack-image {
    width: 60%;
    height: 70%;
    left: 0;
    bottom: 10%;
    transform: rotate(-4deg);
    z-index: 2;
}

.why-us-image-container:hover .main-stack-image {
    transform: translateY(-50%) rotate(4deg);
}

.why-us-image-container:hover .accent-stack-image {
    transform: rotate(-6deg) translateY(-10px);
}

.satisfaction-badge {
    position: absolute;
    top: 10%;
    left: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    width: 180px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 25px 50px rgba(218, 165, 32, 0.25);
    animation: float 3s ease-in-out infinite;
}

.satisfaction-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.satisfaction-badge .number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.satisfaction-badge .label {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-us-image-container {
        height: 600px;
        order: -1;
    }

    .satisfaction-badge {
        top: 5%;
        left: 5%;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 6rem 0;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-us .section-title {
        font-size: 3.2rem;
        margin-bottom: 3rem;
    }

    .why-us-image-container {
        height: 500px;
    }

    .satisfaction-badge {
        width: 140px;
        height: 140px;
        padding: 1.5rem;
    }

    .satisfaction-badge .number {
        font-size: 2.6rem;
    }
}

/* Footer Section */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 90% 10%, rgba(255, 107, 0, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(218, 165, 32, 0.1) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.5;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column a:hover::before {
    width: 100%;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--white) !important;
    padding-left: 0 !important;
}

.social-icon:hover::before {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: var(--primary-color);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

@media (max-width: 768px) {
    .footer {
        padding-top: 6rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

/* Gallery Section Styles */
.gallery {
    padding: 5rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)), url('./images/background.png');
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}

.gallery-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-header .section-subtitle {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.gallery-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
}

.gallery-header .section-subtitle::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
}

.gallery-header .section-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-header .section-description {
    font-family: var(--font-primary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.6;
}

.gallery-carousel {
    position: relative;
    padding: 0.5rem 0;
    overflow: hidden;
}

.gallery-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: auto;
    margin: 0 -1rem;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.prev-btn:disabled,
.next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-track {
    display: flex;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.gallery-item {
    min-width: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.gallery-content {
    padding: 0.5rem;
}

.gallery-content h3 {
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.gallery-content p {
    font-family: var(--body-font);
    font-size: 0.7rem;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.gallery-category {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
}

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

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.gallery-dot:hover {
    background-color: var(--accent-color);
}

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

@media (max-width: 992px) {
    .gallery-header .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-header .section-title {
        font-size: 1.5rem;
    }
    
    .gallery-header .section-description {
        font-size: 0.9rem;
    }
    
    .gallery-item {
        min-width: 140px;
    }
    
    .gallery-content h3 {
        font-size: 0.8rem;
    }
    
    .gallery-content p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .gallery-controls {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        justify-content: center;
        gap: 1rem;
    }
    
    .prev-btn, .next-btn {
        margin: 0;
    }
    
    .gallery-item {
        min-width: 120px;
    }
}

/* Contact Section Styles */
.contact {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

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

.contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact .section-subtitle {
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.contact .section-subtitle::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
}

.contact .section-subtitle::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--accent-color);
}

.contact .section-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact .section-description {
    font-family: var(--body-font);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.6;
}

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

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details h3 {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-details p {
    font-family: var(--body-font);
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.4;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background-color: var(--off-white);
    font-family: var(--body-font);
    font-size: 0.95rem;
    resize: none;
    transition: all 0.3s ease;
}

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

.submit-btn {
    grid-column: span 2;
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 1rem 2rem;
    margin-top: 1rem;
    cursor: pointer;
    position: relative;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s infinite linear;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .submit-btn {
        grid-column: 1;
    }
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .stat-item {
        padding-right: 1.5rem;
    }
    
    .stat-item:not(:last-child)::after {
        right: 0.5rem;
        height: 25px;
    }
    
    .stat-number {
        font-size: 2.6rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
}

/* Specific styles for smaller mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1.5rem;
        padding: 1rem 0.75rem;
        width: 100%;
    }
    
    .stat-item {
        flex: 0 0 auto;
        width: auto;
        padding-right: 0;
        margin-right: 0;
        text-align: center;
    }
    
    /* Remove dividers on mobile for better spacing */
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.4rem;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.9rem;
        text-align: center;
        white-space: nowrap;
    }
}

/* Styles for the about and services pages */
.about-hero, 
.services-hero {
    padding-top: calc(var(--header-height-desktop) + 50px) !important; /* Add proper padding for fixed header */
    min-height: auto !important;
}

@media (max-width: 768px) {
    .about-hero,
    .services-hero {
        padding-top: calc(var(--header-height-mobile) + 30px) !important;
    }
}

/* Home Hero specific styles */
.home-hero {
    padding-top: 100px; /* Increased base padding specifically for home page */
}

@media (max-width: 992px) {
    .home-hero {
        padding-top: 110px; /* Increased padding for better spacing */
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding-top: 140px; /* Further increased padding for smaller screens */
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding-top: 150px; /* Maximum padding for smallest screens */
    }
}

.feature-grid {
    display: grid;
    width: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .feature-card {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }
}

@media (max-width: 480px) {
    .feature-card {
        margin-bottom: 1rem;
        flex-direction: row;
        text-align: left;
        padding: 1.5rem;
        align-items: flex-start;
    }
    
    .feature-card i {
        margin-right: 1.2rem;
        margin-bottom: 0;
    }
    
    .feature-card h3, .feature-card p {
        text-align: left;
    }
    
    .feature-card p {
        margin-bottom: 0;
    }
}

/* About Image Container and Experience Badge */
.about-image-container {
    position: relative;
    max-width: 100%;
    height: auto;
    z-index: 1;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    height: 450px;
}

.grid-item {
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image {
    grid-row: 1 / span 1;
    height: 280px;
    border-radius: 10px;
    transform: translateX(-20px);
    z-index: 1;
}

.accent-image {
    grid-row: 2 / span 1;
    height: 200px;
    border-radius: 8px;
    transform: translateX(20px);
    z-index: 2;
}

.experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent-color);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
    text-align: center;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

/* Media queries for experience badge responsiveness */
@media (max-width: 768px) {
    .experience-badge {
        width: 120px;
        height: 120px;
    }
    
    .experience-badge .years {
        font-size: 2.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge .years {
        font-size: 2.2rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
}

/* Projects Section Styles */
.projects {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/pattern-light.svg') no-repeat;
    background-size: 100% auto;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.projects-container {
    position: relative;
    z-index: 1;
}

.projects-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.projects-header .section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.projects-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.projects-header .section-title {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.projects-header .section-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.project-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.project-card:hover .project-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.project-view-btn:hover {
    background: var(--accent-color);
}

.project-content {
    padding: 1.5rem;
}

.project-category {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-title {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.project-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.project-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.project-link i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.project-link:hover {
    color: var(--accent-color);
}

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

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

/* Responsive Projects Section */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 4rem 0;
    }
    
    .projects-header .section-title {
        font-size: 2.2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .projects-header .section-title {
        font-size: 1.8rem;
    }
    
    .projects-header .section-description {
        font-size: 1rem;
    }
    
    .project-content {
        padding: 1.2rem;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
}

/* Loading and Error States */
.loading-projects,
.no-projects,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.loading-projects {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.loading-projects i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: block;
}

.no-projects {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.error-message {
    color: #e74c3c;
    font-size: 1.1rem;
    background-color: #fdf3f2;
    border-left: 5px solid #e74c3c;
} 