:root {
    --bg-color: #ffffff;
    --section-alt: #f8f9fa; /* Light grey for section breathing room */
    --text-main: #1a1a1a;
    --text-dim: #666666;
    --accent: #e63946; /* The bold red from your inspiration */
    --border: #eeeeee;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; background: rgba(255, 255, 255, 0.95);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

#jc {
    color: #0E1A62;
}

.logo { font-size: 1.4rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--accent); }



/* Hero Section */
.hero {
    padding: 100px 5%;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
    background: var(--bg-color);
}

.hero h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 1.5rem; font-weight: 800; color: #0E1A62;}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 2.5rem; max-width: 500px; }

/* Buttons */
.btn-primary {
    background: var(--accent); color: white; padding: .5rem 2rem;
    text-decoration: none; border-radius: 6px; font-weight: 600; display: inline-block;
    border: 2px var(--accent) solid;
}

.btn-primary:hover {
    background: white;
    border-color: var(--accent);
    color: var(--text-main);;
}

.btn-secondary {
    border: 2px solid var(--text-main); color: var(--text-main); padding: 1rem 2rem;
    text-decoration: none; border-radius: 6px; font-weight: 600; margin-left: 10px;
}

/* Stats Section (Light Grey Background) */
.stats-container {
    display: flex; justify-content: space-around; 
    background: var(--section-alt); padding: 5rem 5%; border-radius: 24px; margin: 0 5%;
}

.stat-item h2 { font-size: 3.5rem; color: var(--text-main); margin-bottom: 5px; }
.stat-item p { color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; }

/* Work Gallery */
.gallery { padding: 100px 5%; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 40px; }

.grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px;
}
.card {
    background: white; border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; transition: 0.4s ease;
}
.card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.card img { width: 100%; display: block; }


.services {
    padding: 100px 5%;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.subtitle {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

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

.service-card {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.icon-box img {
    width: 100%;
    height: auto;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* --- */

.footer {
    padding: 60px 5% 40px;
    background-color: #ffffff;
    border-top: 1px solid var(--border);
    text-align: center;
}

.copyright {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.socials {
    margin-bottom: 30px;
}

.socials a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

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

.divider {
    margin: 0 10px;
    color: var(--border);
}

/* The Styled Credit Section */
.credits {
    display: flex;
    justify-content: center;
    border-top: 1px solid #f0f0f0; /* Very light line to separate credits */
}

.credits-h {
    font-size: 0.75rem; /* Smaller text */
    padding-top: 20px;
    margin-top: 20px;
    color: #999; /* Muted grey */
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
}

.credits p {
    font-size: 0.75rem; /* Smaller text */
    color: #999; /* Muted grey */
    letter-spacing: 0.5px;
    padding-left: 5%;
    padding-right: 5%;
}

.credits a {
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
}

/* --- */

/* About Section Styles */
.about-section {
    padding: 120px 5%;
    background-color: #ffffff;
}

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

.about-grid {
    display: grid;
    /* Enable when have image */
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 80px; */
    align-items: center;
}

/* Image with Badge Effect */
.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

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

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.experience-badge .number {
    display: block;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Content Styles */

.about-content h2 {
    color: #0E1A62;
    font-size: 3rem;
    line-height: 1.1;
    margin: 20px 0;
}

.about-content h2 span {
    color: var(--accent);
}

.about-content p {
    color: var(--text-dim);
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    margin-bottom: 40px;
}

.about-features li {
    padding-left: 20px;
    border-left: 3px solid var(--accent);
    margin-bottom: 25px;
}

.about-features li strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
        box-shadow: none;
    }
}

/* contact */

.contact-section {
    padding: 100px 5%;
    background-color: var(--section-alt); /* Light grey background to separate from white sections */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-cards {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 5px;
}

.contact-card p {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.map-container {
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    line-height: 0; /* Removes tiny gap at bottom of iframe */
}

/* Responsive Map */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        height: 350px;
    }
}