/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:sans-serif;
}

html, body {
    margin: 0;
    background: #fffdfd;
    color: #000000;
    overflow-x: hidden;
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    display: block;
}

.menu-icon {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 35px;
    transition: 0.4s ease;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #f4b400;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #f4b400;
}

.nav-right .btn {
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-red {
    background: #f4b400;
    color: #000;
}

.btn-red:hover {
    background: #fff;
    transform: translateY(-3px);
}

/* HERO */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1497032205916-ac775f0649ae') center/cover;
    display: flex;
    align-items: center;
    padding-left: 10%;
}

.small-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #aaa;
}

.about-hero h1 {
    font-size: 60px;
    margin: 10px 0;
    color: #fff;
}

.about-hero h1 span {
    color: #febf03;
}

.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #febf03;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

/* PERKS */
.perks {
    display: flex;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 40px;
    background-color: #f7f7f7;
}

.perks-left {
    flex: 1;
}

.perks-left h2 {
    font-size: 40px;
}

.perks-left span {
    color: #febf03;
}

.perks-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.perk-box {
    border: 1px solid #333;
    padding: 25px;
    transition: 0.3s;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.perk-box:hover {
    border-color: #febf03;
    transform: translateY(-5px);
}

/* STORY */
.story {
    text-align: center;
    padding: 80px 10%;
    color: #858383;
}

.section-tag p {
    color: #000;
}

.section-tag {
    font-size: 13px;
    letter-spacing: 2px;
    color: #6c63ff;
}

.section-tag.red {
    color: #000000;
    font-size: 18px;
}

/* WHY (Natively Responsive) */
.why {
    text-align: center;
    padding: 80px 10%;
    background-color: #f7f7f7;
}

.why h2 {
    font-size: 40px;
    margin: 10px 0 50px;
}

.why h2 span {
    color: #febf03;
}

.why-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; /* Allows cards to drop to next line on smaller screens */
}

.why-card {
    border: 1px solid #febf03;
    padding: 40px;
    width: 100%;
    max-width: 320px; /* Limits size on desktop, but allows shrinking on mobile */
    transition: 0.3s;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-card:hover {
    border-color: #fff;
    transform: translateY(-8px);
}

.why-card.blue { border-color: #febf03; }
.why-card.red-border { border-color: #febf03; }

/* CTA SECTION (Natively Responsive) */
.cta-section {
    width: 100%;
    padding: 80px 5%; /* Uses percentage instead of fixed pixels */
    display: flex;
    justify-content: center;
}

.cta-container {
    max-width: 1200px;
    width: 100%;
    background-color: black;
    padding: 8% 5%; /* Dynamic padding based on screen size */
    border-radius: 25px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('b.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-container::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    filter: blur(100px);
    animation: floatLight 6s infinite alternate ease-in-out;
}

.cta-small-title {
    color: #070707;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-text {
    font-size: 16px;
    color: #fffbfb;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #f4b400;
    color: #050505;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(176, 172, 172, 0.4);
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(4, 2, 2, 0.6);
}

/* ANIMATIONS */
.animate-cta {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
}

@keyframes floatLight {
    from { transform: translateY(0px); }
    to { transform: translateY(30px); }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* FOOTER (Natively Responsive) */
.footer {
    background: #000;
    padding: 80px 8% 50px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Automatically stacks on mobile */
    gap: 40px; /* Reduced gap */
}

.footer-col h4 {
    color: #febf03;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    color: #aaa;
    font-size: 14px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #febf03;
}

.footer-brand .logo {
    font-size: 26px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand .logo span {
    color: #febf03;
}

.footer-brand p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-info li {
    color: #bbb;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    background: transparent;
    box-shadow: 0 10px 20px rgba(254,191,3,0.4);
    
}

.social-icons a i {
    font-size: 16px;
}

.social-icons a:hover {
    background: #febf03;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(254,191,3,0.4);
}


/* ========================================================
   MOBILE MEDIA QUERIES
======================================================== */

@media (max-width: 992px) {
    /* Navbar Dropdown */
    .menu-icon { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: -100%; width: 100%;
        background: #000; flex-direction: column; text-align: center;
        padding: 20px 0; gap: 20px;
    }
    .nav-links.active { left: 0; }

    /* Perks Dropdown */
    .perks { flex-direction: column; padding: 60px 5%; }
    
    /* Font sizing and spacing */
    .why { padding: 60px 5%; }
    .story { padding: 60px 5%; }
    .cta-section { padding: 60px 5%; }
}

@media (max-width: 768px) {
    .about-hero h1 { font-size: 40px; }
    .perks-right { grid-template-columns: 1fr; }
    .cta-title { font-size: 28px; }
}

@media (max-width: 600px) {
    .about-hero { padding-left: 0; justify-content: center; text-align: center; }
    
    /* Text sizing adjustments for phones */
    .why { padding: 40px 5%; }
    .why h2 { font-size: 32px; }
    .why-card { padding: 25px; }

    /* Shrink CTA fonts slightly more */
    .cta-title { font-size: 24px; margin-bottom: 15px; }
    .cta-text { font-size: 14px; margin-bottom: 25px; }
    .cta-btn { padding: 12px 30px; font-size: 14px; }

    /* Footer Centering */
    .footer { text-align: center; padding: 50px 5% 30px; }
    .footer-container { gap: 30px; }
    .social-icons { justify-content: center; margin-top: 10px; }
}