:root {
    --primary: #002D5B;
    --primary-light: #004285;
    --accent: #F9A825;
    --accent-dark: #cc8400;
    --dark: #12151a;
    --light: #f8f9fa;
    --white: #ffffff;
    --grey: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Fonts mapping to requested styles */
    --font-main: 'Outfit', sans-serif; /* Replacement for Brother-1816 */
    --font-heading: 'Outfit', sans-serif; /* Using Outfit Bold */
    --font-accent: 'Playfair Display', serif; /* Placeholder for The Blast */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title.white {
    color: var(--white);
}

.section-title.left {
    text-align: left;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
}

.section-title.left::after {
    left: 0;
    transform: none;
}

.section-badge {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Top Bar */
.top-bar {
    background: var(--primary-light);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts span {
    margin-right: 2rem;
}

.top-socials a {
    margin-left: 1.5rem;
    opacity: 0.8;
}

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

/* Header */
#main-nav {
    position: fixed;
    top: 2.5rem; /* Offset for top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

#main-nav.scrolled {
    background: rgba(0, 45, 91, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    top: 0;
}

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

.logo img {
    max-height: 50px;
    display: block;
    transition: var(--transition);
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1); /* Make it white for dark footer */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

.cta-mini {
    background: var(--accent);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.cta-mini:hover {
    background: var(--white) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1493946740644-2d8a1f1a6afd?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 45, 91, 0.9) 0%, rgba(0, 45, 91, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    flex: 1.2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--accent);
    font-family: var(--font-accent);
    font-weight: 400;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1.2;
}

.hero-form-container {
    flex: 0.8;
}

.hero-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    color: var(--dark);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.hero-form-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hero-form-card p {
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.hero-form .form-group {
    margin-bottom: 1rem;
}

.hero-form .form-group input, 
.hero-form .form-group select {
    padding: 0.8rem 1rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
}

/* Specializations (Plan Structure) */
.spec-section {
    padding: 100px 0;
    background: var(--light);
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.plan-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.plan-header {
    background: var(--primary);
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: none;
}

.plan-header h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin: 0;
}

.plan-body {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    text-align: center;
}

.plan-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.plan-desc {
    color: var(--grey);
}

.plan-footer {
    padding: 2rem;
    padding-top: 0;
    text-align: center;
}

.plan-footer .btn {
    font-size: 0.85rem;
    padding: 1rem 0.5rem;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-plan {
    /* Identical border/shadow as the left card */
    box-shadow: none;
    transform: none;
}

.featured-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Product Section */
.products-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    top: -300px;
    right: -300px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.product-item {
    position: relative;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.p-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 45, 91, 0.95), rgba(0, 45, 91, 0.4));
    z-index: 1;
    transition: var(--transition);
}

.product-item:hover .p-overlay {
    background: linear-gradient(to top, rgba(0, 45, 91, 0.95), rgba(249, 168, 37, 0.4));
}

.p-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.product-item:hover .product-icon {
    transform: scale(1.1);
}

.product-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.product-item:hover h4 {
    color: var(--accent);
}

.product-item p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Why Section */
.why-section {
    padding: 100px 0;
}

.why-layout {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.why-text {
    flex: 1;
}

.intro-p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--grey);
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.b-icon {
    min-width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.benefit-item:hover .b-icon {
    background: var(--accent);
    color: var(--white);
}

.b-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.why-visual {
    flex: 1;
}

.visual-stack {
    position: relative;
    height: 500px;
}

.v-img {
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.v-img-1 {
    width: 80%;
    height: 400px;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: cover;
}

.v-img-2 {
    width: 60%;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 2;
    background-size: cover;
    border: 10px solid var(--white);
}

.v-stat-card {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: var(--accent);
    padding: 2rem;
    border-radius: 12px;
    z-index: 3;
    color: var(--primary);
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Instagram Live */
.live-section {
    padding: 100px 0;
    text-align: center;
}

.section-subtitle {
    margin-top: -2rem;
    margin-bottom: 3rem;
    color: var(--grey);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.insta-item:hover img {
    transform: scale(1.1);
}

/* Success Section */
.success-section {
    padding: 100px 0;
}

.secondary-bg {
    background: var(--light);
}

.success-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.success-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.box-inner i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.box-inner h3 {
    margin-bottom: 1rem;
}

/* Partners Slider */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.partners-slider {
    overflow: hidden;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    gap: 5rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(0,0,0,0.15);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--primary);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2.5rem)); }
}

/* Inquiry Section */
.inquiry-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)), url('https://images.unsplash.com/photo-1577705993349-dbd120117d63?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
}

.contact-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}

.contact-info-panel {
    flex: 1;
    background: var(--primary);
    padding: 5rem;
    color: var(--white);
}

.contact-info-panel p {
    margin-bottom: 3rem;
    opacity: 0.8;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.detail-item span {
    display: block;
    font-weight: 700;
}

.contact-form-panel {
    flex: 1.2;
    background: var(--white);
    padding: 5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #eee;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.file-upload label {
    display: block;
    padding: 1rem;
    border: 2px dashed #eee;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--grey);
}

.file-upload label:hover {
    border-color: var(--accent);
    color: var(--primary);
    background: rgba(249, 168, 37, 0.05);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.1);
}

.btn.full {
    width: 100%;
}

/* FAQ & Map */
.faq-map-section {
    padding: 100px 0;
}

.faq-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
    cursor: pointer;
}

#map-placeholder {
    height: 350px;
    min-height: auto;
    background: #e2e8f0;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-contact-line {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.map-contact-line i {
    color: var(--accent);
    margin-right: 5px;
}

.map-contact-line a:hover {
    color: var(--accent);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background: #128c7e;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.map-overlay i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 50px;
}

.footer-brand h3 {
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-brand p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-links h4, 
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    opacity: 0.6;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 50px;
    text-align: center;
    opacity: 0.4;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .top-bar { display: none; }
    #main-nav { top: 0; }
    .hero-split {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 3rem;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { justify-content: center; }
    .plan-grid, .why-layout, .faq-map-grid, .footer-top {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-layout { flex-direction: column-reverse; }
    .contact-card { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .insta-grid { grid-template-columns: 1fr 1fr; }
    .success-grid, .product-grid { grid-template-columns: 1fr; }
}
