/* Global Styles */
:root {
    --color-navy: #0A1F44;
    --color-mid-blue: #2F5A8A;
    --color-light-steel: #B0C4DE;
    --color-orange: #FF7F11;
    --color-off-white: #F5F4F0;
    --color-white: #FFFFFF;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-off-white);
    color: var(--color-navy);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--color-orange);
    border-radius: 2px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

.bg-off-white {
    background-color: var(--color-off-white);
}

.bg-light-blue {
    background-color: rgba(176, 196, 222, 0.1);
}

/* Light Steel Blue with opacity */
.bg-navy {
    background-color: var(--color-navy);
}

/* Buttons */
.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-mid-blue);
    /* Hover effect mentioned in prompt */
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-navy);
    padding: 10px 22px;
    border: 2px solid var(--color-navy);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}

.btn-nav {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-nav:hover {
    background-color: var(--color-mid-blue);
}


/* Header */
header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-mid-blue) 100%);
    color: var(--color-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    border-radius: 50%;
    background-color: var(--color-white);
    padding: 5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: var(--color-white);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links li a:hover:not(.btn-nav) {
    color: var(--color-orange);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-white);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-white);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--color-light-steel);
}


/* Problem Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-blue {
    font-size: 3rem;
    color: var(--color-mid-blue);
    margin-bottom: 20px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    border-top: 5px solid var(--color-mid-blue);
}

.service-card.premium {
    border-top: 5px solid var(--color-orange);
    /* Highlight PFE offer */
    transform: scale(1.05);
    z-index: 1;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.service-card ul li i {
    color: var(--color-mid-blue);
    margin-right: 15px;
    font-size: 1.2rem;
}

.service-card.premium ul li i {
    color: var(--color-orange);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}


/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--color-light-steel);
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-mid-blue);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--color-white) 0%, #f0f4f8 100%);
    border-color: var(--color-orange);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 20px 0;
}


/* Process Section */
.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 127, 17, 0.4);
}

.step i {
    font-size: 2.5rem;
    color: var(--color-navy);
    margin-bottom: 15px;
    transition: var(--transition);
}

.step:hover i {
    color: var(--color-orange);
    transform: scale(1.1) rotate(5deg);
}

.line {
    flex: 1;
    height: 2px;
    background-color: var(--color-light-steel);
    margin-top: 20px;
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 768px) {
    .line {
        display: block;
    }
}

/* Features / Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    padding: 30px;
    border-radius: 15px;
    background: var(--color-white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-light-steel);
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(47, 90, 138, 0.1);
    color: var(--color-mid-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-item:hover .icon-box {
    background-color: var(--color-orange);
    color: var(--color-white);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 127, 17, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 127, 17, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 127, 17, 0);
    }
}


/* Footer */
footer {
    background-color: var(--color-navy);
    color: var(--color-off-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info h3 {
    color: var(--color-white);
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--color-light-steel);
    font-size: 1.5rem;
    margin-left: 20px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-orange);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: var(--color-light-steel);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--color-navy);
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.btn-messenger {
    background-color: #0084FF;
    /* Messenger Blue */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-messenger:hover {
    background-color: #006bcf;
}

.btn-instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    /* Insta Gradient */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-instagram:hover {
    opacity: 0.9;
}


/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Add JS to toggle */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-navy);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.premium {
        transform: scale(1);
        /* Remove scaling on mobile */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
}

/* Social Media Section Specifics */
.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 3.5rem;
    text-decoration: none;
    color: var(--color-navy);
}

.social-card span {
    font-size: 1rem;
    margin-top: 15px;
    font-weight: 600;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.social-card.facebook i {
    color: #1877F2;
}

.social-card.instagram i {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* standard property */
    color: transparent;
    /* fallback */
}

/* Ensure standard color if gradient fails or for older browsers fallback */
@supports not (background-clip: text) {
    .social-card.instagram i {
        background: none;
        color: #E1306C;
    }
}