/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: "Google Sans", sans-serif;
    background: #fff;
    color: #1c1c1c;
    overflow-x: hidden;
}

.no-scroll { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; }

/* ===== NAV ===== */
#navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 900;
    background: #1a1a1a;
    transition: box-shadow 0.3s;
    animation: fadeDown 0.6s ease both;
}

#navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 46px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #d0d0d0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.2s;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: #cf4730;
    border-radius: 1px;
    transition: width 0.25s ease;
}

.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: #cf4730;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: #b83a25;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    transition: transform 0.45s ease;
}

.hamburger.active {
    transform: rotate(360deg);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== FULLSCREEN MENU ===== */
#fullscreen-menu {
    position: fixed;
    inset: 0;
    background: #111;
    z-index: 800;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#fullscreen-menu.open {
    opacity: 1;
    pointer-events: all;
}

.fs-close {
    position: absolute;
    top: 22px; right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.2s, transform 0.25s;
}

.fs-close:hover { color: #cf4730; transform: rotate(90deg); }

.fs-logo img { height: 54px; filter: brightness(0) invert(1); }

.fs-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 460px;
}

.fs-nav a {
    color: #d0d0d0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    padding: 16px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s, letter-spacing 0.2s, opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.fs-nav a:last-child { border-bottom: none; }
.fs-nav a:hover { color: #cf4730; letter-spacing: 6px; }

#fullscreen-menu.open .fs-nav a:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.07s; }
#fullscreen-menu.open .fs-nav a:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.14s; }
#fullscreen-menu.open .fs-nav a:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.21s; }
#fullscreen-menu.open .fs-nav a:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.28s; }

.fs-contact {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s 0.35s ease;
}

#fullscreen-menu.open .fs-contact { opacity: 1; }

.fs-contact p {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fs-contact a {
    color: #fff;
    text-decoration: none;
}

.fs-contact i { color: #cf4730; }

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url("../images/IMG_4846.JPG");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-box {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 720px;
    width: 100%;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 4px;
    color: #cf4730;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-box h1 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-divider {
    width: 50px;
    height: 3px;
    background: #cf4730;
    margin: 0 auto 28px;
    border-radius: 2px;
}

/* Contact info inside hero box */
.hero-contact {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 12px 28px;
    gap: 20px;
    margin-bottom: 32px;
    backdrop-filter: blur(6px);
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.hero-contact-item i { color: #cf4730; font-size: 14px; }
.hero-contact-item:hover { color: #f0c0b8; }

.hero-contact-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.25);
}

.hero-btn {
    display: inline-block;
    background: #cf4730;
    color: #fff;
    padding: 14px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(207,71,48,0.4);
}

.hero-btn:hover {
    background: #b83a25;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(207,71,48,0.5);
}

/* ===== HIGHLIGHT STRIP ===== */
.strip {
    background: #1a1a1a;
    padding: 0;
}

.strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 32px 36px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
}

.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(207,71,48,0.08); }

.strip-item > i {
    font-size: 28px;
    color: #cf4730;
    flex-shrink: 0;
}

.strip-item h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.strip-item p {
    color: #888;
    font-size: 13px;
}

/* ===== SECTIONS ===== */
.section { padding: 96px 20px; }
.section.light { background: #f7f7f7; }
.section.dark  { background: #1a1a1a; }

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

.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;
    color: #cf4730;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.light-label { color: #cf4730; }

.section-header h2, .about-text h2, .contact-info h2 {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section.dark .section-header h2,
.about-text h2,
.contact-info h2 { color: #fff; }

.section-line {
    width: 40px;
    height: 3px;
    background: #cf4730;
    border-radius: 2px;
    margin: 0 auto;
}

.about-text .section-line,
.contact-info .section-line { margin: 0; }

/* ===== SERVICE CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 8px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 1px solid #ebebeb;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    border-color: #cf4730;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(207,71,48,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.25s;
}

.card:hover .card-icon { background: rgba(207,71,48,0.16); }

.card-icon i {
    font-size: 24px;
    color: #cf4730;
}

.card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 10px;
}

.card p {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 { margin: 16px 0 20px; }

.about-text p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.outline-btn {
    display: inline-block;
    margin-top: 28px;
    border: 2px solid #cf4730;
    color: #cf4730;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.outline-btn:hover {
    background: #cf4730;
    color: #fff;
    transform: translateY(-2px);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat {
    padding: 28px 32px;
    border-left: 3px solid #cf4730;
    background: rgba(255,255,255,0.03);
}

.stat-num {
    display: block;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
}

/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    background: #ddd;
    border-radius: 6px;
    aspect-ratio: 4/3;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 { margin: 16px 0 20px; }

.contact-info p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 20px;
}

.contact-details {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #d0d0d0;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-row i {
    width: 40px;
    height: 40px;
    background: rgba(207,71,48,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cf4730;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-row:hover { color: #fff; }

/* Contact form */
.contact-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 36px 32px;
}

.form-group { margin-bottom: 16px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 13px 16px;
    color: #fff;
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #666; }

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cf4730;
    box-shadow: 0 0 0 3px rgba(207,71,48,0.15);
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #cf4730;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-top: 6px;
}

.submit-btn:hover {
    background: #b83a25;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 36px 20px;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.footer-logo { height: 40px; filter: brightness(0) invert(1); }

footer p { color: #555; font-size: 13px; }

.footer-credit a { color: #cf4730; transition: color 0.2s; }
.footer-credit a:hover { color: #e8553d; }

/* ===== KEYFRAMES ===== */
@keyframes fadeDown {
    from { opacity:0; transform:translateY(-16px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cards { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-stats { flex-direction: row; flex-wrap: wrap; }
    .stat { flex: 1; min-width: 160px; }
}

@media (max-width: 900px) {
    .strip-inner { grid-template-columns: 1fr; }
    .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .strip-item:last-child { border-bottom: none; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { background-attachment: scroll; }
    .hero-contact { flex-direction: column; gap: 12px; border-radius: 12px; }
    .hero-contact-sep { width: 40px; height: 1px; }

    .section { padding: 64px 20px; }

    .cards { grid-template-columns: 1fr; }

    .contact-grid { gap: 40px; }

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

    .gallery { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .about-stats { flex-direction: column; }
}
