/* ==========================================================================
   01. ROOT & GLOBAL VARIABLES
   ========================================================================== */
:root {
    --bg-black: #f8f8fd; /* මුළු සයිට් එකේම Premium Dark කළු පාට */
    --card-black: #121214; /* කාඩ් වලට ගන්නා තද කළු පාට */
    --gold: #d4af37;
    --white: #ffffff;
    --light-text: #cccccc;
    --neon-blue: #00d4ff;
    --deep-blue: #0044cc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: var(--bg-black);
    color: var(--white);
    overflow-x: hidden;
}

/* ==========================================================================
   02. NAVIGATION BAR
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8%;
    background: rgba(12, 12, 14, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 86, 179, 0.2); /* ලාවට නිල් බෝඩර් එකක් */
    backdrop-filter: blur(10px);
}

.nav-logo { height: 50px; }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.3s ease;
}

.nav-links a:hover, .nav-links .active { color: var(--gold) !important;}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 28px;
    background: var(--gold);
    margin: 4px 0;
    transition: 0.4s;
}

/* ==========================================================================
   03. ABOUT HERO SECTION
   ========================================================================== */
.about-hero {
    height: 85vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(12, 12, 14, 0.75); /* අකුරු පැහැදිලිව පෙනෙන්න ඩාර්ක් කලා */
    z-index: -1;
}

.hero-caption {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    z-index: 10;
}

.hero-caption h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fff;
}

.gold-text { color: var(--gold); }
.white-text { color: var(--white); }

.hero-caption p {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Premium Buttons */
.btn-primary {
    padding: 14px 35px;
    background: transparent;
    color: var(--gold) !important;
    border: 2px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold);
    color: #0c0c0e !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

/* ==========================================================================
   04. ABOUT MAIN & OUR STORY
   ========================================================================== */
.about-main {
    padding: 100px 8%;
    text-align: center;
}

.our-story-container {
    max-width: 850px;
    margin: 0 auto 70px auto;
}
/* --- Blue Text Style --- */
.blue-text {
   color: var(--deep-blue) !important;; /* #00d4ff නිල් පාට */
}

.black-text {
    color: var(--card-black); /* #ffffff සුදු පාට */
}

.our-story-container h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.our-story-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--card-black);
}

/* Vision & Mission Cards */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-card {
    background: var(--card-black);
    padding: 50px 35px;
    border-radius: 20px;
    border: 1px solid rgba(0, 86, 179, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.card-icon {
    font-size: 2.8rem;
    color: var(--neon-blue); /* Vision/Mission Icons වලට ලස්සන නිල් පාටක් දුන්නා */
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   05. OUR FOCUS SECTION
   ========================================================================== */
.our-focus {
    padding: 100px 8%;
    background: #f6f6f8;
}

.our-focus .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.our-focus .section-header h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.blue-text {
   color: var(--deep-blue) !important;; /* #00d4ff නිල් පාට */
}

.black-text {
    color: var(--card-black); /* #ffffff සුදු පාට */
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.focus-item {
    position: relative;
    background: var(--card-black);
    padding: 50px 35px;
    border-radius: 15px;
    border: 1px solid rgba(0, 86, 179, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: left;
}

.focus-number {
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(0, 212, 255, 0.05); /* Glow Blue Watermark */
    position: absolute;
    top: -5px;
    right: 15px;
    transition: 0.4s;
}

.focus-item h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.focus-item p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.6;
}

/* Focus Item Hovers */
.focus-item:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.1);
}

.focus-item:hover .focus-number {
    color: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

.focus-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 3px;
    background: var(--gold);
    transition: 0.4s;
}

.focus-item:hover::after { width: 100%; }

/* ==========================================================================
   06. WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-us { padding: 100px 0; background: var(--bg-black); }

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-us .section-header h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
}
.blue-text {
   color: var(--deep-blue) !important;; /* #00d4ff නිල් පාට */
}

.black-text {
    color: var(--card-black); /* #ffffff සුදු පාට */
}

.choose-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.choose-image { flex: 1; }

.choose-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(0, 86, 179, 0.2);
}

.choose-grid {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #121214 !important; /* හැමවෙලේම තද කළු පාටින්ම තියාගන්න */
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--deep-blue) !important; /* වම් බෝඩර් එක තද නිල් */
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    box-shadow: none !important; /* කාඩ් එක වටේ තියෙන සුදු/ලා නිල් shadow එක අයින් කලා */
    transition: all 0.3s ease;
}

/* 2. Cursor එක උඩට ගෙනිච්චහම (Hover State) පෙනුම */
.choose-item:hover {
    background: rgba(0, 68, 204, 0.15) !important; /* හොවර් කරද්දී ලස්සන ලා තද නිල් ග්ලෝ එකක් විතරයි */
    transform: translateX(10px);
    border-left: 4px solid var(--deep-blue) !important;
    box-shadow: 0 5px 25px rgba(0, 68, 204, 0.2) !important; /* නිල් පාට shadow එකක් විතරයි */
}

/* Icons වල පාටත් තද නිල් කලර් එකට මැච් කළා */
.choose-icon i { 
    font-size: 1.8rem; 
    color: var(--deep-blue); 
}

.choose-text h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 5px; }
.choose-text p { font-size: 0.95rem; color: var(--light-text); }
/* ==========================================================================
   07. OUR WORK PROCESS
   ========================================================================== */
.our-process { padding: 100px 8%; text-align: center; background: #f4f4f7; }
.our-process .section-header p { color: var(--card-black); margin-top: 10px; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step { position: relative; padding: 25px; background: var(--card-black); border-radius: 15px; border: 1px solid rgba(255,255,255,0.03); }
.step-num { font-size: 3rem; font-weight: 800; color: rgba(0, 212, 255, 0.08); margin-bottom: -15px; }
.step h4 { color: var(--gold); font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--light-text); font-size: 0.9rem; line-height: 1.5; }

/* ==========================================================================
   08. CTA SECTION
   ========================================================================== */
/* ==========================================================================
   PREMIUM GLASSMORPHISM CTA SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 120px 8%;
    background: #060608; /* තද කළු Background එක */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 68, 204, 0.15);
    border-bottom: 1px solid rgba(0, 68, 204, 0.15);
}

/* Background Glow Shapes (සුදු වෙන්නේ නැති වෙන්න තද නිල් සහ ලා රන්වන් දාලා තියෙන්නේ) */
.cta-glow-1 {
    position: absolute;
    top: -50px; left: -50px;
    width: 300px; height: 300px;
    background: rgba(0, 68, 204, 0.2); /* Deep Blue Glow */
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

.cta-glow-2 {
    position: absolute;
    bottom: -50px; right: -50px;
    width: 250px; height: 250px;
    background: rgba(212, 175, 55, 0.08); /* Low Gold Glow */
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

/* Glassmorphism Container */
.cta-container {
    max-width: 1000px;
    width: 100%;
    background: rgba(18, 18, 20, 0.6); /* Translucent Dark */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    z-index: 5;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.15rem;
    color: #b0b0b5;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

/* Premium CTA Button Style */
.cta-btn-wrapper {
    display: inline-block;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--deep-blue), #002b80) !important; /* Deep Blue Gradient */
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 68, 204, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta i {
    transition: transform 0.3s ease;
}

/* Button Hover Effects (සුදු වෙන්නේ නෑ, නිල් පාටින් Glow වෙනවා විතරයි) */
.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 68, 204, 0.5);
    background: linear-gradient(135deg, #0055ff, var(--deep-blue)) !important; /* Brighter Blue on Hover */
}

.btn-cta:hover i {
    transform: translateX(6px); /* ඊතලය දකුණට චූට්ටක් මූව් වෙනවා */
}

/* ==========================================================================
   RESPONSIVE CTA
   ========================================================================== */
@media screen and (max-width: 768px) {
    .cta-section { padding: 80px 4%; }
    .cta-container { padding: 40px 20px; border-radius: 16px; }
    .cta-content h2 { font-size: 2rem; }
    .cta-content p { font-size: 1rem; margin-bottom: 30px; }
    .btn-cta { padding: 14px 30px; font-size: 1rem; }
}

/* ==========================================================================
   09. PREMIUM WORK COMPACT FOOTER (INDEX COPY)
   ========================================================================== */
.main-footer {
    background: #0a0a0a !important;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.main-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 90%; height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-grid {
    max-width: 1200px;
    margin: auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    color: #ffffff !important; /* Headings සේරම සුදු කලා */
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 1px !important; /* 12px වෙනුවට 6px දාලා ලෝගෝ එක සහ නම ළං කළා */
    margin-bottom: 20px;
    height: 160px !important; 
}
.footer-icon{
    margin-left: -35px !important;
    height: 160px !important; /* සයිස් එක හොඳටම පේන්න 120px වගේ දාලා බලන්න */
    width: auto !important;
    max-height: none !important; /* Bootstrap එකෙන් හිර කරලා තියෙනවා නම් ඒක අයින් කරන්න */
    object-fit: contain;
}
.footer-logo img {
    height: 50px;
    border-radius: 10px;
}


/* ENIX කොටස සඳහා රන්වන් පැහැය (Premium Gold) */
.logo-text .gold-text {
    color: #d4af37 !important;
    font-weight: 800;
}

/* ORA කොටස සඳහා පසුබිමට කැපී පෙනෙන ලස්සන නිල් පැහැය */
.logo-text .blue-text {
    color: #041e41 !important; /* අර තද නිල් වෙනුවට කළු පසුබිමේ කැපිලා පේන Neon Blue එකක් දැම්මා */
    font-weight: 800;
}

.about-desc { color: #ffffff !important; line-height: 1.7; margin-bottom: 25px; opacity: 0.9; }

.social-icons { display: flex; gap: 15px; }
.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    color: #d4af37 !important;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.social-icons a:hover { background: #d4af37 !important; color: #000 !important; transform: translateY(-5px); }

/* Links List */
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ffffff !important; text-decoration: none; transition: 0.3s; font-size: 0.95rem; opacity: 0.85; }
.footer-links a:hover { color: #d4af37 !important; opacity: 1; padding-left: 5px; }

/* Contact Details (Gold Section) */
.contact-details { list-style: none; padding: 0; }
.contact-details li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: #d4af37 !important; font-size: 0.95rem; }
.contact-details i { color: #d4af37 !important; font-size: 1.1rem; width: 20px; text-align: center; }
.contact-details a { color: #d4af37 !important; text-decoration: none; transition: 0.3s; }
.contact-details a:hover { color: #ffffff !important; text-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

.back-to-top {
    position: absolute;
    bottom: 30px; right: 5%; width: 45px; height: 45px;
    background: #d4af37; color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.back-to-top:hover { transform: scale(1.1); box-shadow: 0 0 20px #d4af37; }

/* ==========================================================================
   10. GLOBAL RESPONSIVE MEDIA QUERIES (BREAKPOINTS)
   ========================================================================== */
@media screen and (max-width: 992px) {
    /* Navbar Hamburger Trigger */
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 250px;
        background: rgba(12, 12, 14, 0.98); backdrop-filter: blur(8px);
        display: flex; flex-direction: column; padding-top: 100px; padding-left: 30px; gap: 25px;
        transition: 0.4s ease; border-left: 1px solid rgba(0, 86, 179, 0.2);
    }
    .nav-links.active { right: 0 !important; }

    /* Hero Text Adjustments */
    .hero-caption h1 { font-size: 2.8rem; }
    .hero-caption p { font-size: 1rem; }

    /* Sections Layouts */
    .choose-wrapper { flex-direction: column; gap: 30px; }
    .choose-image img { height: 280px; }

    /* FIXED TWO-COLUMN MOBILE FOOTER (INDEX COPY) */
    .footer-grid {
        grid-template-columns: 1fr 1.2fr !important; 
        gap: 40px 20px;
        text-align: left;
    }
    .footer-grid .footer-col:first-child { grid-column: span 2; margin-bottom: 10px; }
    .footer-logo, .social-icons, .contact-details li { justify-content: flex-start !important; }
    .footer-col h3 { text-align: left !important; font-size: 1.1rem; margin-bottom: 15px; }
    .footer-links a { display: block; padding-left: 0; }
    .contact-details li { font-size: 0.85rem; gap: 10px; }
}

@media screen and (max-width: 600px) {
    .about-hero { height: 75vh; }
    .hero-caption h1 { font-size: 2.2rem; }
    .our-story-container h2, .our-focus .section-header h2, .why-choose-us .section-header h2 { font-size: 2rem; }
    .about-main, .our-focus, .why-choose-us { padding: 60px 5%; }
    
    /* 50% / 50% split for small phones */
    .footer-grid {
        grid-template-columns: 1fr 1.1fr !important;
        gap: 30px 10px;
        padding: 0 4%;
    }
    .about-desc, .footer-links a { font-size: 0.85rem; }
    .back-to-top { bottom: 20px; right: 4%; width: 40px; height: 40px; }
}
.logo-text .gold-text {
    color: #e9be31 !important;
    font-weight: 900; /* අකුරු හොඳින් කැපිලා පේන්න */
}

/* ORA කොටස සඳහා නිල් පැහැය (Neon Electric Blue) */
.logo-text .blue-text {
    color: #041e41 !important;
    font-weight: 800;
}
/* ============================================================
   RESPONSIVE BREAKPOINTS (Optimized)
   ============================================================ */

/* ============================
   1200px (Large Laptops)
   ============================ */
@media screen and (max-width: 1200px) {
    .choose-wrapper {
        gap: 40px;
    }
}

/* ============================
   992px (Tablets & Small Laptops)
   ============================ */
@media screen and (max-width: 992px) {

    /* Navbar */
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        padding-top: 100px;
        padding-left: 30px;
        background: rgba(12,12,14,0.98);
        backdrop-filter: blur(8px);
        flex-direction: column;
        gap: 25px;
        transition: 0.4s ease;
        border-left: 1px solid rgba(0,86,179,0.2);
    }
    .nav-links.active { right: 0; }

    /* Hero */
    .hero-caption h1 { font-size: 2.8rem; }
    .hero-caption p { font-size: 1rem; }

    /* Why Choose Us */
    .choose-wrapper {
        flex-direction: column;
        text-align: left;
    }
    .choose-image img {
        height: auto;
        max-height: 300px;
    }

    /* Footer 2-column */
    .footer-grid {
        grid-template-columns: 1fr 1.2fr !important;
        gap: 40px 20px;
    }
    .footer-grid .footer-col:first-child {
        grid-column: span 2;
    }
}

/* ============================
   768px (Tablets)
   ============================ */
@media screen and (max-width: 768px) {

    /* Global Section Padding */
    .about-main,
    .our-focus,
    .why-choose-us,
    .our-process {
        padding: 70px 5%;
    }

    /* Hero */
    .hero-caption h1 { font-size: 2.4rem; }

    /* About Cards */
    .about-card {
        padding: 40px 25px;
    }

    /* Focus Cards */
    .focus-item {
        padding: 40px 28px;
    }
    .focus-number {
        font-size: 3.5rem;
        right: 10px;
    }

    /* CTA */
    .cta-container {
        padding: 40px 25px;
    }
    .cta-content h2 { font-size: 2.2rem; }
    .cta-content p { font-size: 1.05rem; }
    .btn-cta {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ============================
   600px (Large Phones)
   ============================ */
@media screen and (max-width: 600px) {

    /* Hero */
    .about-hero {
        height: 75vh;
    }
    .hero-caption h1 {
        font-size: 2.2rem;
    }

    /* Section Titles */
    .our-story-container h2,
    .our-focus .section-header h2,
    .why-choose-us .section-header h2 {
        font-size: 2rem;
    }

    /* Footer Grid 50/50 */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px 15px;
    }

    .about-desc,
    .footer-links a {
        font-size: 0.85rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
    }
}

/* ============================
   480px (Standard Phones)
   ============================ */
@media screen and (max-width: 480px) {

    /* Navbar */
    .nav-links {
        width: 220px;
        padding-left: 20px;
    }

    /* Hero */
    .hero-caption h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    .hero-caption p {
        font-size: 0.95rem;
    }

    /* About Cards */
    .about-card {
        padding: 30px 20px;
    }
    .about-card h3 { font-size: 1.3rem; }

    /* Focus Cards */
    .focus-item {
        padding: 30px 20px;
    }
    .focus-number {
        font-size: 3rem;
        right: 5px;
    }

    /* Why Choose Us */
    .choose-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.7rem;
    }
    .cta-content p {
        font-size: 0.95rem;
    }
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================
   375px (Small iPhones)
   ============================ */
@media screen and (max-width: 375px) {

    .hero-caption h1 {
        font-size: 1.7rem;
    }

    .about-card,
    .focus-item {
        padding: 25px 18px;
    }

    .focus-number {
        font-size: 2.5rem;
    }
}

/* ============================
   320px (Extra Small Phones)
   ============================ */
@media screen and (max-width: 320px) {

    /* Hero */
    .hero-caption h1 {
        font-size: 1.5rem;
    }

    /* Cards spacing minimize */
    .about-card,
    .focus-item {
        padding: 20px 15px;
    }

    /* Button full-width */
    .btn-primary,
    .btn-cta {
        width: 100%;
        text-align: center;
    }
}