/* --- 1. GLOBAL SETTINGS --- */
:root {
    --navy: #0f172a;
    --olive: #808000; /* New Secondary Colour */
    --whatsapp-green: #25d366;
    --text-slate: #475569;
    --off-white: #fdfdfd;
    --white: #ffffff;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: var(--navy);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }

/* --- 2. NAVIGATION BAR --- */
.navbar {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
}

.logo span { color: var(--olive); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--olive); }

.nav-cta {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--navy);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.nav-cta:hover {
    background: var(--navy);
    color: var(--white);
}

/* --- 3. FLOATING WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float img { width: 24px; height: 24px; }
.whatsapp-float:hover { transform: translateY(-5px); }

/* --- 4. HERO SECTION --- */
.hero { padding: 80px 0; background: var(--white); }
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.trust-badge { color: var(--olive); font-weight: 700; font-size: 0.8rem; margin-bottom: 15px; }
h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; font-weight: 800; }

.hero-content p { font-size: 1.1rem; color: var(--text-slate); margin-bottom: 32px; }

/* Fixed Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.btn-whatsapp-large {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp-large img { width: 24px; }
.btn-whatsapp-large:hover { transform: translateY(-2px); filter: brightness(1.05); }

.sub-btns { display: flex; gap: 15px; align-items: center; }
.btn-sub { font-weight: 600; color: var(--text-slate); text-decoration: none; border-bottom: 2px solid #cbd5e1; }
.cta-subtext { font-size: 0.8rem; color: #94a3b8; font-weight: 600; }

/* Hero Visual stack */
.hero-visual { position: relative; }
.main-img {
    background: #e2e8f0;
    aspect-ratio: 1/1; /* Keeps it a perfect square */
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--navy);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    overflow: hidden; /* This clips the image to the rounded corners */
}

.main-img img {
    width: 100%;       /* Makes image width match the container */
    height: 100%;      /* Makes image height match the container */
    object-fit: cover; /* This is the MAGIC: it crops the photo to fit without stretching it */
    object-position: center; /* Ensures Hena or the car stays in the middle */
}
.overlay-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.overlay-card strong { display: block; font-size: 1.1rem; color: var(--olive); }

/* --- 5. FEATURES --- */
.features { padding: 80px 0; }
.grid-3 {
    display: grid;
    /* This makes them uniform: 3-wide on desktop, 2-wide on small tablets, 1-wide on phones */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px;
    align-items: start;
}

.f-card {
    text-align: center;
    padding: 30px;
    background: white; /* Optional: adds a slight card feel */
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.f-card:hover {
    transform: translateY(-5px); /* Adds a subtle lift like the pricing cards */
}
.f-card .icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.f-card h3 { margin-bottom: 10px; }

/* --- 6. TESTIMONIALS --- */
.testimonials { padding: 100px 0; background: var(--white); }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: var(--text-slate); margin-bottom: 50px; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.t-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars { color: #fbbf24; margin-bottom: 15px; font-size: 1.2rem; }
.student strong { display: block; margin-top: 15px; color: var(--navy); }
.student span { font-size: 0.8rem; color: #94a3b8; }

/* --- 7. PRICING --- */
.pricing { padding: 100px 0; }
.price-grid {
    display: grid;
    /* This creates 3 columns if space allows, or 2 if narrower */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 25px;
    max-width: 1100px; /* Widened to fit 3 cards comfortably */
    margin: 40px auto 0;
}

.p-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease; /* Smooth transition for hover */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- HOVER HIGHLIGHT EFFECT --- */
.p-card:hover {
    transform: translateY(-10px); /* Lifts the card up */
    border-color: var(--olive); /* Changes border to your brand olive */
    box-shadow: 0 20px 40px rgba(128, 128, 0, 0.15); /* Soft olive glow */
    cursor: pointer;
}



.p-card.hot { border: 2px solid var(--olive); background: #fbfcfa; }
.tag { 
    position: absolute; 
    top: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--olive); 
    color: white; 
    padding: 5px 15px; 
    border-radius: 50px; 
    font-size: 0.7rem; 
    font-weight: 800; 
}


.price { font-size: 3rem; font-weight: 800; margin: 20px 0; }
.price span { font-size: 1rem; color: var(--text-slate); font-weight: 400; }
.btn-main { background: var(--navy); color: white; padding: 15px; display: block; text-decoration: none; border-radius: 12px; font-weight: 700; }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); padding: 13px; display: block; text-decoration: none; border-radius: 12px; font-weight: 700; margin-top: 20px; }

/* --- 8. FOOTER --- */
/* --- FOOTER STYLING --- */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo { font-size: 1.5rem; margin-bottom: 20px; color: #fff; }
.footer-logo span { color: var(--olive); }

.footer-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--off-white);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links, .area-list {
    list-style: none;
}

.footer-links li, .area-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--olive);
    padding-left: 5px; /* Subtle slide effect */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    padding-bottom: 30px; /* Gives some breathing room at the bottom */
    display: flex;
    flex-direction: column; /* Stacks the copyright and agency tag */
    justify-content: center;
    align-items: center; /* This centers everything perfectly */
    text-align: center;
    gap: 10px; /* Space between the copyright and your agency tag */
}

.agency-tag strong {
    color: var(--olive);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-desc {
        margin: 0 auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}


.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover .fa-tiktok {
    /* Optional: Subtle TikTok branding glow */
    text-shadow: 2px 0px #ff0050, -2px 0px #00f2ea;
}

.social-icon:hover {
    background: var(--olive);
    color: white;
    transform: translateY(-5px); /* Uniform lift effect */
    box-shadow: 0 10px 20px rgba(128, 128, 0, 0.2);
}

.social-icon:hover {
    background: var(--olive);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(128, 128, 0, 0.3);
}

/* --- Arcellus Studio Signature Styling --- */
.arcellus-link {
    color: var(--off-white); /* Your Signature Purple */
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.arcellus-link:hover {
    color: var(--white); /* A slightly lighter purple on hover */
    transform: scale(1.05); /* Subtle pop effect */
}

/* Optional: Add a small purple underline on hover */
.arcellus-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--off-white);
    transition: width 0.3s ease;
}

.arcellus-link:hover::after {
    width: 100%;
}

.agency-tag {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #64748b;
}

/* Specific Instagram hover if you want the brand color */
.social-icon .fa-instagram:hover {
    color: #fff;
}
.foot-actions { margin-top: 30px; display: flex; justify-content: center; }
.agency-tag { margin-top: 40px; font-size: 0.8rem; opacity: 0.6; }


.student-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5; /* Portrait look like a real photo */
    background: #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.pass-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--olive);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.student-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pass-stat {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.pass-loc {
    font-size: 0.8rem;
    color: var(--text-slate);
}

/* Hover effect for the whole card */
.t-card:hover .student-img img {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* --- 9. RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-grid, .testimonial-grid, .price-grid, .grid-3 { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    h1 { font-size: 2.5rem; }
    .hero-actions { align-items: center; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
}