/* ============================================
   ALGROWTHM — COMPLETE CSS
   ============================================ */

/* ----- RESET ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1628;
    --secondary: #e8491d;
    --text-dark: #0a1628;
    --text-gray: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 60px rgba(232, 73, 29, 0.12);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

/* ----- TYPOGRAPHY ----- */
.section-label {
    display: inline-block;
    background: rgba(232, 73, 29, 0.08);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
}

.section-title span {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin-top: 10px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ----- BUTTONS ----- */
.btn-primary {
    display: inline-block;
    padding: 15px 36px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(232, 73, 29, 0.25);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 73, 29, 0.35);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--secondary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--secondary);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-white {
    display: inline-block;
    padding: 15px 36px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1000;
}

.announcement span {
    color: var(--secondary);
}

/* ============================================
   NAVBAR
   ============================================ */
nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.logo small {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: -4px;
    letter-spacing: 1.2px;
}

.menu {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.menu a:hover::after {
    width: 100%;
}

.menu a:hover {
    color: var(--secondary);
}

.menu .active {
    color: var(--secondary);
}

.menu .active::after {
    width: 100%;
}

.menu .nav-cta {
    background: var(--secondary);
    color: #fff;
    padding: 10px 26px;
    border-radius: 10px;
    font-weight: 600;
}

.menu .nav-cta::after {
    display: none;
}

.menu .nav-cta:hover {
    background: var(--primary);
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(165deg, #0a1628 0%, #1a2a4a 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 73, 29, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.hero-text h1 .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(232, 73, 29, 0.25);
    border-radius: 4px;
}

.hero-text .hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-text .hero-description strong {
    color: #fff;
}

.hero-badges {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
}

.hero-badges .badge i {
    color: var(--secondary);
    margin-right: 8px;
}

.hero-actions {
    margin-top: 35px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Form */
.hero-form {
    background: #fff;
    padding: 40px 35px;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-form .form-header {
    text-align: center;
    margin-bottom: 20px;
}

.hero-form .form-header h3 {
    font-size: 22px;
    color: var(--primary);
}

.hero-form .form-header p {
    font-size: 13px;
    color: var(--text-light);
}

.hero-form .form-header .guarantee {
    display: inline-block;
    background: rgba(232, 73, 29, 0.06);
    color: var(--secondary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}

.hero-form input,
.hero-form textarea,
.hero-form select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
    background: #fafbfc;
}

.hero-form input:focus,
.hero-form textarea:focus,
.hero-form select:focus {
    border-color: var(--secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232, 73, 29, 0.08);
}

.hero-form textarea {
    resize: vertical;
    min-height: 80px;
}

.hero-form button {
    width: 100%;
    padding: 16px;
    border: none;
    background: var(--secondary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.hero-form button:hover {
    background: var(--primary);
}

.hero-form .form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
}

.hero-form .form-note i {
    color: var(--secondary);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: #fafbfc;
    padding: 35px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item .number {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
}

.trust-item .number span {
    color: var(--secondary);
}

.trust-item .label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================================
   ABOUT ME
   ============================================ */
#about-me {
    background: #ffffff;
}

.about-me-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-me-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 450px;
    background: linear-gradient(145deg, var(--primary), #1a2a4a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
}

.about-me-image img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary);
    box-shadow: 0 10px 40px rgba(232, 73, 29, 0.3);
    margin-bottom: 20px;
}

.about-me-image .bio-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: var(--radius);
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-me-image .bio-card h4 {
    font-size: 20px;
    color: var(--primary);
}

.about-me-image .bio-card .title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
}

.about-me-image .bio-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

.about-me-image .bio-card .social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.about-me-image .bio-card .social-links a {
    color: var(--text-gray);
    transition: var(--transition);
    font-size: 18px;
}

.about-me-image .bio-card .social-links a:hover {
    color: var(--secondary);
}

.about-me-content .section-title {
    font-size: 38px;
}

.about-me-content .founder-name {
    color: var(--secondary);
    font-weight: 700;
}

.about-me-content p {
    color: var(--text-gray);
    margin-bottom: 14px;
    font-size: 15px;
}

.about-me-content .highlight-quote {
    background: #fef6f3;
    padding: 24px 30px;
    border-left: 4px solid var(--secondary);
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}

.about-me-content .highlight-quote p {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
}

.about-me-content .expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.about-me-content .expertise-tags .tag {
    background: rgba(232, 73, 29, 0.06);
    color: var(--secondary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
#services {
    background: #fafbfc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: var(--radius);
    border: 1px solid #eef2f6;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.service-card .icon {
    font-size: 38px;
    color: var(--secondary);
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 8px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(165deg, var(--primary), #1a2a4a);
    text-align: center;
    color: #fff;
    padding: 80px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
}

.cta-section h2 span {
    color: var(--secondary);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 12px auto 30px;
    font-size: 18px;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0a0a1a;
    color: #fff;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 900;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-brand p {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 10px;
    max-width: 350px;
}

.footer-brand .social-icons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.footer-brand .social-icons a {
    color: #94a3b8;
    font-size: 20px;
    transition: var(--transition);
}

.footer-brand .social-icons a:hover {
    color: var(--secondary);
}

footer h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition);
}

footer ul a:hover {
    color: var(--secondary);
}

.footer-contact p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--secondary);
    margin-right: 12px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #1a1a2e;
    padding-top: 24px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.footer-bottom span {
    color: var(--secondary);
}

/* ============================================
   FLOATING CONTACT BUTTON
   ============================================ */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-contact .main-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(232, 73, 29, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-contact .main-btn:hover {
    transform: scale(1.08);
}

.floating-contact .main-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #25D366;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.floating-contact .options {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 12px;
    animation: slideUp 0.3s ease;
}

.floating-contact .options.open {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.floating-contact .options .option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
    white-space: nowrap;
}

.floating-contact .options .option-btn:hover {
    transform: translateX(-6px);
}

.floating-contact .options .option-btn i {
    font-size: 20px;
    width: 28px;
    text-align: center;
}

.floating-contact .options .option-btn.call-btn i {
    color: var(--secondary);
}

.floating-contact .options .option-btn.whatsapp-btn i {
    color: #25D366;
}

.floating-contact .options .close-options {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    text-align: center;
}

.floating-contact .options .close-options:hover {
    color: var(--secondary);
}

.floating-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
}

.floating-overlay.active {
    display: block;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    max-width: 520px;
    width: 100%;
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    animation: modalSlide 0.4s ease;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlide {
    from {
        transform: translateY(40px) scale(0.96);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 30px;
    cursor: pointer;
    color: #94a3b8;
    transition: var(--transition);
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
}

.modal-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-box .icon-big {
    font-size: 48px;
    color: var(--secondary);
    text-align: center;
    display: block;
    margin-bottom: 6px;
}

.modal-box h2 {
    font-size: 26px;
    text-align: center;
    color: var(--primary);
}

.modal-box .modal-sub {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
    margin: 6px 0 20px;
}

.modal-box input,
.modal-box select,
.modal-box textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 14px;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    background: #fafbfc;
    box-sizing: border-box;
}

.modal-box input:focus,
.modal-box select:focus,
.modal-box textarea:focus {
    border-color: var(--secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(232, 73, 29, 0.08);
}

.modal-box textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-box .btn-primary {
    width: 100%;
    text-align: center;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.modal-box .form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 25px 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        gap: 16px;
        border-bottom: 2px solid var(--secondary);
    }

    .menu.open {
        display: flex;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 20px 0;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .about-me-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-me-image {
        min-height: 300px;
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 30px;
    }

    section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .modal-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 26px;
    }
    .hero-badges {
        gap: 12px;
        font-size: 13px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        text-align: center;
        width: 100%;
    }
    .trust-item .number {
        font-size: 26px;
    }
    .about-me-content .section-title {
        font-size: 28px;
    }
    .modal-box h2 {
        font-size: 22px;
    }
    .floating-contact .main-btn {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}