@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #e01f26;
    /* Vivid Red */
    --accent: #e01f26;
    /* Brand Red */
    --light: #fff5f5;
    /* Very Light Red Tint */
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Nav */
header {
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: lowercase;
    letter-spacing: -1.5px;
}

.accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    /* Square buttons with subtle curve per request */
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn.primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(224, 31, 38, 0.2);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(224, 31, 38, 0.3);
}

.btn.secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 1rem;
}

.btn.secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-sm:hover {
    transform: scale(1.05);
}

/* Announcement Bar */
.announcement-bar {
    background: var(--dark);
    color: var(--white);
    padding: 0.8rem 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.announcement-bar .message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.call-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Trusted By */
.trusted-by {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
    text-align: center;
}

.small-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 800;
}

.trust-flex {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.8;
}

.country {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

/* Services */
.services {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 3rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(224, 31, 38, 0.08);
    border-color: var(--primary);
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: block;
}

.service-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}


/* Features */
.features {
    padding: 120px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.feature-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 2.5rem;
}

.feature-list strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 2.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--primary);
    color: var(--white);
}

.contact-card {
    background: var(--white);
    color: var(--dark);
    padding: 5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.info-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary);
}

.info-item p {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
}

.maintenance-note {
    background: #fffafa;
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    border: 1px dashed var(--primary);
    color: var(--text);
}

/* Footer */
footer {
    padding: 60px 0;
    background: #fdfdfd;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.socials a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    transition: var(--transition);
}

.socials a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 3rem 1.5rem;
    }

    .hero-btns .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .btn.secondary {
        margin-left: 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
}