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

:root {
    --chalkboard-green: #2d5f4f;
    --chalkboard-light: #4a8070;
    --chalkboard-dark: #1f4438;
    --off-white: #fafafa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #6e6e73;
    --border-light: #e5e5e5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: var(--chalkboard-green);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #f8fffe 0%, var(--off-white) 100%);
    padding: 100px 20px 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--chalkboard-green);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--chalkboard-light);
    bottom: -150px;
    left: -50px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--chalkboard-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-button.primary {
    background-color: var(--chalkboard-green);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 95, 79, 0.25);
}

.cta-button.primary:hover {
    background-color: var(--chalkboard-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 95, 79, 0.3);
}

.cta-button.secondary {
    background-color: white;
    color: var(--chalkboard-green);
    border: 2px solid var(--chalkboard-green);
}

.cta-button.secondary:hover {
    background-color: var(--chalkboard-green);
    color: white;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--chalkboard-green);
    stroke-width: 1.5;
    fill: none;
}

.floating-card .card-icon .card-logo {
    height: 36px;
    width: auto;
}

.floating-card .card-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--chalkboard-green);
}

.card-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 35%;
    right: 0%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 5%;
    left: 15%;
    animation-delay: 2s;
}

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

/* Services Section - Chalkboard Style */
/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--chalkboard-green) 15%, var(--chalkboard-green) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 165, 54, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Wood-Framed Content Box */
.framed-content {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 
        0 4px 60px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.04);
    border-left: 28px solid #6b5544;
    border-right: 28px solid #6b5544;
    background-clip: padding-box;
}

/* Left wood border grain */
.framed-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -28px;
    width: 28px;
    height: 100%;
    background: linear-gradient(90deg, 
        #9a8067 0%, 
        #7d6650 30%,
        #6b5544 70%,
        #5d4a3a 100%
    );
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0 Q4 50 7 100 T5 200' stroke='rgba(0,0,0,0.08)' fill='none' stroke-width='1.5'/%3E%3Cpath d='M12 0 Q10 60 13 120 T11 200' stroke='rgba(0,0,0,0.06)' fill='none' stroke-width='1'/%3E%3Cpath d='M18 0 Q16 40 19 80 T17 200' stroke='rgba(0,0,0,0.07)' fill='none' stroke-width='1.5'/%3E%3Cpath d='M23 0 Q21 70 24 140 T22 200' stroke='rgba(0,0,0,0.05)' fill='none' stroke-width='1'/%3E%3Ccircle cx='14' cy='45' r='6' fill='rgba(74,60,48,0.3)'/%3E%3Ccircle cx='10' cy='165' r='4' fill='rgba(74,60,48,0.25)'/%3E%3C/svg%3E");
    box-shadow: inset -2px 0 4px rgba(0,0,0,0.1);
}

/* Right wood border grain */
.framed-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -28px;
    width: 28px;
    height: 100%;
    background: linear-gradient(90deg, 
        #5d4a3a 0%,
        #6b5544 30%,
        #7d6650 70%,
        #9a8067 100%
    );
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0 Q4 50 7 100 T5 200' stroke='rgba(0,0,0,0.08)' fill='none' stroke-width='1.5'/%3E%3Cpath d='M12 0 Q10 60 13 120 T11 200' stroke='rgba(0,0,0,0.06)' fill='none' stroke-width='1'/%3E%3Cpath d='M18 0 Q16 40 19 80 T17 200' stroke='rgba(0,0,0,0.07)' fill='none' stroke-width='1.5'/%3E%3Cpath d='M23 0 Q21 70 24 140 T22 200' stroke='rgba(0,0,0,0.05)' fill='none' stroke-width='1'/%3E%3Ccircle cx='14' cy='85' r='5' fill='rgba(74,60,48,0.25)'/%3E%3Ccircle cx='18' cy='145' r='4' fill='rgba(74,60,48,0.3)'/%3E%3C/svg%3E");
    box-shadow: inset 2px 0 4px rgba(0,0,0,0.1);
}

/* Wood Frame - Top */
.wood-border-top {
    height: 28px;
    background: linear-gradient(180deg, 
        #9a8067 0%, 
        #7d6650 15%,
        #6b5544 40%,
        #5d4a3a 70%,
        #4a3c30 100%
    );
    border-radius: 0;
    margin-left: -28px;
    margin-right: -28px;
    position: relative;
    box-shadow: 
        inset 0 2px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.2),
        0 4px 12px rgba(0,0,0,0.15);
}

/* Wood Frame - Bottom */
.wood-border-bottom {
    height: 28px;
    background: linear-gradient(180deg, 
        #4a3c30 0%,
        #5d4a3a 30%,
        #6b5544 60%,
        #7d6650 85%,
        #9a8067 100%
    );
    border-radius: 0;
    margin-left: -28px;
    margin-right: -28px;
    position: relative;
    box-shadow: 
        inset 0 1px 0 rgba(0,0,0,0.2),
        inset 0 -2px 0 rgba(255,255,255,0.1),
        0 4px 12px rgba(0,0,0,0.1);
}

/* Wood grain texture */
.wood-border-top::before,
.wood-border-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6 Q50 4 100 7 T200 5' stroke='rgba(0,0,0,0.08)' fill='none' stroke-width='1.5'/%3E%3Cpath d='M0 12 Q60 10 120 13 T200 11' stroke='rgba(0,0,0,0.06)' fill='none' stroke-width='1'/%3E%3Cpath d='M0 18 Q40 16 80 19 T200 17' stroke='rgba(0,0,0,0.07)' fill='none' stroke-width='1.5'/%3E%3Cpath d='M0 23 Q70 21 140 24 T200 22' stroke='rgba(0,0,0,0.05)' fill='none' stroke-width='1'/%3E%3Ccircle cx='45' cy='14' r='6' fill='rgba(74,60,48,0.3)'/%3E%3Ccircle cx='165' cy='10' r='4' fill='rgba(74,60,48,0.25)'/%3E%3C/svg%3E");
    background-size: 200px 28px;
    border-radius: inherit;
}

/* Wood highlight strips */
.wood-border-top::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 20%, 
        rgba(255,255,255,0.25) 50%, 
        rgba(255,255,255,0.2) 80%, 
        transparent 100%
    );
}

.wood-border-bottom::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.15) 20%, 
        rgba(255,255,255,0.2) 50%, 
        rgba(255,255,255,0.15) 80%, 
        transparent 100%
    );
}

/* Inner content */
.content-inner {
    padding: 70px 60px;
    position: relative;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--chalkboard-green);
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--chalkboard-green), #d4a536);
}

.section-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.1;
}

.section-title span {
    background: linear-gradient(135deg, var(--chalkboard-green) 0%, #d4a536 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: linear-gradient(145deg, #fafafa 0%, #f5f5f7 100%);
    border-radius: 20px;
    padding: 44px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--chalkboard-green), #d4a536);
    -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;
    transition: opacity 0.5s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 95, 79, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 24px 48px rgba(45, 95, 79, 0.12),
        0 8px 24px rgba(0,0,0,0.06);
}

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

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

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Card icon */
.service-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--chalkboard-green) 0%, var(--chalkboard-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 
        0 8px 20px rgba(45, 95, 79, 0.3),
        0 2px 4px rgba(45, 95, 79, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-card .card-icon {
    transform: scale(1.05);
    box-shadow: 
        0 12px 28px rgba(45, 95, 79, 0.35),
        0 4px 8px rgba(45, 95, 79, 0.2);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 1.5;
    fill: none;
}

/* Card tag */
.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4a536;
    background: linear-gradient(135deg, rgba(212, 165, 54, 0.12) 0%, rgba(212, 165, 54, 0.06) 100%);
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 165, 54, 0.15);
}

/* Card title */
.card-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

/* Card description */
.card-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Card CTA */
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--chalkboard-green);
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(45, 95, 79, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background: var(--chalkboard-green);
    color: white;
    gap: 14px;
}

.card-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.card-cta:hover svg {
    transform: translateX(3px);
}

/* Services Responsive */
@media (max-width: 1024px) {
    .services {
        padding: 80px 0;
    }

    .services-container {
        padding: 0 24px;
    }

    .content-inner {
        padding: 50px 40px;
    }

    .section-title {
        font-size: 42px;
    }

    .service-cards {
        gap: 24px;
    }

    .service-card {
        padding: 36px;
    }

    .card-title {
        font-size: 26px;
    }
}

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

    .wood-border-top,
    .wood-border-bottom {
        height: 20px;
    }

    .content-inner {
        padding: 40px 28px;
    }

    .content-inner::before {
        left: 20px;
        right: 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 16px;
    }

    .content-inner {
        padding: 32px 20px;
    }

    .section-eyebrow::before,
    .section-eyebrow::after {
        width: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .card-icon {
        width: 52px;
        height: 52px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-description {
        font-size: 15px;
    }
}

/* WrenchBase Section */
.wrenchbase {
    padding: 120px 20px;
    position: relative;
    background: 
        linear-gradient(
            180deg,
            rgba(26, 58, 52, 0.92) 0%,
            rgba(26, 58, 52, 0.88) 50%,
            rgba(26, 58, 52, 0.95) 100%
        ),
        url('assets/background.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.wrenchbase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a536, #e8bc4a, #d4a536);
}

.wrenchbase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a536, #e8bc4a, #d4a536);
}

.wrenchbase-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.wrenchbase-logo {
    margin-bottom: 24px;
}

.wrenchbase-logo img {
    height: 60px;
    width: auto;
}

.wrenchbase-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.wrenchbase-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    margin-bottom: 36px;
    text-align: left;
    display: inline-block;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    color: #d4a536;
    font-weight: 700;
    font-size: 18px;
}

.cta-button.wrenchbase-btn {
    background: linear-gradient(135deg, #d4a536 0%, #c49530 100%);
    color: #1a3a34;
    padding: 18px 36px;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(212, 165, 54, 0.3);
}

.cta-button.wrenchbase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 54, 0.4);
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--chalkboard-green) 0%, var(--chalkboard-dark) 100%);
    color: white;
}

.contact .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.contact-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-button {
    display: inline-block;
    background-color: white;
    color: var(--chalkboard-green);
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .nav-menu a {
        font-size: 15px;
    }
    
    .hero {
        padding: 60px 20px 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .tiles {
        grid-template-columns: 1fr;
    }
    


    .product-tiles {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .floating-card {
        padding: 16px;
    }
    
    .floating-card .card-icon {
        font-size: 28px;
    }
    
    .floating-card .card-text {
        font-size: 12px;
    }
}

/* Large Screen Adjustments */
@media (min-width: 1400px) {
    .nav-container {
        max-width: 1400px;
        padding: 0 60px;
        height: 100px;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav-menu {
        gap: 50px;
    }
    
    .nav-menu a {
        font-size: 17px;
    }
    
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
}

@media (min-width: 1800px) {
    .nav-container {
        max-width: 1600px;
        padding: 0 80px;
        height: 110px;
    }
    
    .logo-img {
        height: 90px;
    }
    
    .nav-menu {
        gap: 60px;
    }
    
    .nav-menu a {
        font-size: 18px;
    }
    
    .container {
        max-width: 1600px;
    }
    
    .services-container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero {
        padding: 120px 20px 140px;
    }
}

@media (min-width: 2200px) {
    .nav-container {
        max-width: 1800px;
        height: 120px;
    }
    
    .logo-img {
        height: 100px;
    }
    
    .nav-menu a {
        font-size: 20px;
    }
    
    .container {
        max-width: 1800px;
    }
}

/* Portfolio Page Styles */
.portfolio-header {
    background: linear-gradient(135deg, var(--chalkboard-green) 0%, var(--chalkboard-dark) 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: white;
}

.portfolio-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.portfolio-header p {
    font-size: 20px;
    opacity: 0.9;
}

.portfolio-grid {
    padding: 80px 20px;
    background: var(--off-white);
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--border-light);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 28px;
}

.portfolio-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--chalkboard-green);
    background: rgba(45, 95, 79, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.portfolio-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.portfolio-info p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--chalkboard-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

.portfolio-link:hover {
    color: var(--chalkboard-dark);
}

.nav-menu a.active {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .portfolio-header {
        padding: 100px 20px 60px;
    }
    
    .portfolio-header h1 {
        font-size: 36px;
    }
    
    .portfolio-items {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .portfolio-image {
        height: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Under Construction Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.popup-content {
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.popup-overlay.hidden .popup-content {
    transform: scale(0.9);
}

.popup-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.popup-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.popup-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

.popup-close-btn {
    background: var(--chalkboard-green);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(45, 95, 79, 0.25);
}

.popup-close-btn:hover {
    background: var(--chalkboard-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 95, 79, 0.3);
}
