/* ===== GLOBAL ===== */
* {margin:0; padding:0; box-sizing:border-box;}
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height:1.6;
    color: #222;
    background: #fdfdfd; /* Slightly off-white */
}
img {max-width:100%; display:block;}
a {text-decoration:none; transition:0.3s;}
.container {max-width:1200px; margin:auto; padding:0 20px;}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index:1000;
    transition: background 0.3s ease;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 45px; width: auto; }
.logo h1 { color: white; font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
nav { display: flex; align-items: center; gap: 25px; }
nav a { color: #f0f0f0; font-weight: 500; text-decoration: none; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; position: relative; transition: color 0.3s; }
nav a:not(.nav-btn):hover { color: #ffcc00; }
nav a:not(.nav-btn)::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: #ffcc00; transition: width 0.3s ease; }
nav a:not(.nav-btn):hover::after { width: 100%; }
.nav-btn { padding: 10px 25px; background: #ffcc00; color: #111 !important; font-weight: 700; border-radius: 50px; transition: all 0.3s ease; }
.nav-btn:hover { background: #e6b800; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3); }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; background: none; border: none; }
.menu-toggle span { height: 3px; width: 25px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 75px;
    right: 5%;
    padding: 30px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    gap: 20px;
    z-index: 1000;
  }

  nav a {
    margin: 0;
    text-align: center;
    width: 100%;
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }
}


/* ===== HERO ===== */
.hero {
    position:relative; display:grid; place-items:center;
    min-height:60vh; background-size:cover; background-position:center;
}
.hero::before {
    content:""; position:absolute; inset:0;
    background: rgba(0,0,0,0.5);
}
.hero-text {
    position:relative; color:#fff; text-align:center; max-width:900px; padding:0 16px;
}
.hero-text h2 {font-size: clamp(2.2rem, 2.5vw + 1rem, 3.5rem); margin-bottom:15px; font-weight: 700;}
.hero-text p {font-size: clamp(1.1rem, 1.2vw + 0.8rem, 1.5rem); opacity:0.95; font-weight: 300;}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display:grid; gap:50px; grid-template-columns: 1fr 1.5fr;
    align-items: flex-start;
}

.contact-info {
    background:#fff; padding:40px; border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    border-top: 4px solid #ffcc00;
}

.contact-info h3 {
    margin-bottom:30px;
    font-size: 1.6rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item .icon {
    font-size: 24px;
    color: #ffcc00;
    margin-top: 5px;
}

.info-item div strong {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.info-item div p {
    margin: 0;
    color: #555;
}

.info-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-style: italic;
}

.contact-form {
    display:flex; flex-direction:column; gap:20px;
    background:#fff; padding:40px; border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}
.contact-form h3 {
    margin-bottom:20px;
    font-size: 1.6rem;
}
.contact-form input,
.contact-form textarea {
    width:100%; padding:15px; border-radius:8px;
    border:1px solid #ddd; font-size:1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline:none; border-color:#ffcc00; box-shadow:0 0 0 3px rgba(255,204,0,0.25);
}
.contact-form button {
    align-self:flex-start; background:#ffcc00; color:#111;
    padding:14px 30px; border-radius:50px; font-weight:700;
    border:none; cursor:pointer; transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-form button:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

#form-message {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    margin-top: 15px;
    border: 1px solid transparent;
}

#form-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {opacity:0; transform: translateY(40px); transition:opacity .8s, transform .8s;}
.scroll-reveal.active {opacity:1; transform: translateY(0);}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px){
    .contact-section {
        padding: 60px 0;
    }
    .contact-grid{
        gap:30px;
    }
    .contact-info, .contact-form {
        padding: 30px;
    }
}

/* FOOTER */
footer {
    background: #111;
    color: #b0b0b0;
    padding: 80px 5% 30px;
    font-size: 15px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about h3, .footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-about h3::after, .footer-links h4::after, .footer-contact h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #ffcc00;
    margin-top: 10px;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-logo {
    width: 160px;
    margin-top: 20px;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 1;
}

.socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.socials a img {
    width: 18px;
    height: 18px;
    margin: 0;
    filter: brightness(0) invert(1);
}

.socials a:hover {
    background: #ffcc00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #666;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    footer {
        padding: 60px 5% 30px;
    }
    .footer-container {
        text-align: center;
    }
    .footer-about h3::after, .footer-links h4::after, .footer-contact h4::after {
        margin: 10px auto 0;
    }
    .footer-logo {
        margin: 20px auto;
    }
    .socials {
        justify-content: center;
    }
}