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

:root {
    --primary-color: #0a3d29;
    --secondary-color: #000000;
    --accent-color: #4ade80;
    --accent-secondary: #22c55e;
    --text-dark: #ffffff;
    --text-medium: #e5e7eb;
    --text-light: #d1d5db;
    --text-muted: #9ca3af;
    --bg-white: #1a1a1a;
    --bg-light: #0f0f0f;
    --bg-lighter: #262626;
    --bg-dark: #000000;
    --success-color: #22c55e;
    --border-light: #374151;
    --border-medium: #4b5563;
    --gradient-hero: linear-gradient(135deg, #0a3d29 0%, #000000 100%);
    --gradient-accent: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    --gradient-secondary: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-medium);
    overflow-x: hidden;
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: none;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.logo-img {
    width: 70px;
    height: 70px;
    margin-right: 0.8rem;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23166534" stroke-width="1" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    pointer-events: none;
    opacity: 0.4;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    position: relative;
}

.hero-content {
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-secondary);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #218838;
}

/* Hero Image */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-lighter);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

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

/* Professional Image Section */
.professional-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

.professional-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.professional-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-lighter);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    min-width: 50px;
}

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

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    margin-right: 0.8rem;
    object-fit: contain;
}

.footer-bottom {
    border-top: 2px solid var(--border-light);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-light);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
}

.modal.show .modal-content {
    transform: scale(1);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-dark);
}

.form-step h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.project-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option {
    padding: 1.5rem;
    border: 2px solid var(--border-medium);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-lighter);
}

.option:hover {
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.option.selected {
    border-color: var(--accent-color);
    background: rgba(74, 222, 128, 0.1);
}

.option i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.option span {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-medium);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--bg-lighter);
    color: var(--text-dark);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.unit {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-weight: 500;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .header {
        background: rgba(0, 0, 0, 0.98);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
        border-top: 1px solid var(--border-light);
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 1rem;
    }

    .hero-content {
        padding-top: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Our Expertise Mobile Improvements */
    .our-projects {
        padding: 4rem 0;
        background: var(--bg-light);
    }

    .section-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-light);
        max-width: 400px;
        margin: 0 auto;
    }

    .projects-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 3.5rem;
        margin-top: 3rem;
        padding: 0 1.5rem;
        max-width: none;
    }

    .project-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
        transition: all 0.6s ease;
        opacity: 0;
        transform: translateY(60px);
    }

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

    .project-item:hover {
        transform: translateY(-8px);
    }

    .project-item.animate:hover {
        transform: translateY(-8px);
    }

    .project-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

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

    .project-text {
        padding: 0;
    }

    .project-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.3;
    }

    .project-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-light);
        margin: 0;
    }

    .services {
        padding: 3rem 0;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .about {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .professional-image {
        height: 300px;
    }

    .professional-img {
        max-width: 280px;
    }

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

    .contact {
        padding: 3rem 0;
    }

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

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .project-options {
        grid-template-columns: 1fr;
    }

    .option {
        padding: 1rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    .form-step h3 {
        font-size: 1.2rem;
    }

    /* Footer Mobile Improvements */
    .footer {
        padding: 2rem 0;
    }

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

    .footer-logo-img {
        width: 30px;
        height: 30px;
        margin-right: 0.6rem;
    }

    .footer-bottom {
        border-top: 2px solid var(--accent-color);
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        color: var(--text-light);
        opacity: 1;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
        margin-right: 0.5rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 28px;
        height: 28px;
        margin-right: 0.4rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Our Expertise Mobile Improvements */
    .our-projects {
        padding: 4rem 0;
        background: var(--bg-light);
    }

    .section-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: var(--text-dark);
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-light);
        max-width: 400px;
        margin: 0 auto;
    }

    .projects-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 3.5rem;
        margin-top: 3rem;
        padding: 0 1.5rem;
        max-width: none;
    }

    .project-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
        transition: all 0.6s ease;
        opacity: 0;
        transform: translateY(60px);
    }

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

    .project-item:hover {
        transform: translateY(-8px);
    }

    .project-item.animate:hover {
        transform: translateY(-8px);
    }

    .project-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
        transition: all 0.3s ease;
        margin-bottom: 1.5rem;
    }

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

    .project-text {
        padding: 0;
    }

    .project-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.3;
    }

    .project-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        color: var(--text-light);
        margin: 0;
    }

    .services {
        padding: 3rem 0;
    }

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

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .about {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .professional-image {
        height: 300px;
    }

    .professional-img {
        max-width: 280px;
    }

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

    .contact {
        padding: 3rem 0;
    }

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

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .project-options {
        grid-template-columns: 1fr;
    }

    .option {
        padding: 1rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    .form-step h3 {
        font-size: 1.2rem;
    }

    /* Footer Mobile Improvements */
    .footer {
        padding: 2rem 0;
    }

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

    .footer-logo-img {
        width: 30px;
        height: 30px;
        margin-right: 0.6rem;
    }

    .footer-bottom {
        border-top: 2px solid var(--accent-color);
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        color: var(--text-light);
        opacity: 1;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
        margin-right: 0.5rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .logo {
        font-size: 1.6rem;
    }

    .logo-img {
        width: 38px;
        height: 38px;
        margin-right: 0.7rem;
    }

    .hero-container {
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image {
        max-width: 450px;
    }

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

    .project-item {
        opacity: 0;
        transform: translateY(40px);
    }

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

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

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

    .professional-img {
        max-width: 350px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-logo-img {
        width: 32px;
        height: 32px;
        margin-right: 0.7rem;
    }
}

/* Large tablet landscape */
@media (max-width: 1024px) and (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

    .project-item {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Our Projects Section */
.our-projects {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.project-item {
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

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

.project-item:hover {
    transform: translateY(-8px);
}

.project-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

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

.project-text {
    padding: 0 0.5rem;
}

.project-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.project-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}
