/* Fonts */
@font-face {
    font-family: 'Panton';
    src: url('assets/fonts/Panton-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Panton';
    src: url('assets/fonts/Panton-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow';
    src: url('assets/fonts/Barlow-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow';
    src: url('assets/fonts/Barlow-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon Grotesque';
    src: url('assets/fonts/BrandonGrotesque-Light.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Variables */
:root {
    --primary-red: #F44130;
    --dark-text: #121331;
    /* Approximated dark blue/black from design */
    --body-text: #333333;
    --light-bg: #F9F9F9;
    --card-bg: #EAEAEA;
    --section-bg-dark: #121331;
    --white: #FFFFFF;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Panton', sans-serif;
    color: var(--dark-text);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Header */
header {
    padding: 20px 0;
    position: relative;
    /* Changed from absolute */
    width: 100%;
    z-index: 100;
    top: 0;
    background-color: var(--white);
    /* Added white background */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    /* Added subtle shadow for separation */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-text);
}

.btn-primary {
    color: var(--primary-red) !important;
    font-weight: 700 !important;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
}

/* Hero Section */
.hero {
    padding: 60px 0 60px;
    background: none;
}

.hero-container {
    position: relative;
    background: url('assets/images/hero_image.webp') no-repeat center right / cover;
    border-radius: 0px 0px 40px 40px;
    padding: 100px 80px;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 35%;
    height: 20px;
    background: #3d3d4e;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}

.hero-container::after {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 50%;
    height: 20px;
    background: var(--primary-red);
    border-radius: 20px 20px 0 0;
    z-index: 2;
}

.hero-content {
    max-width: 500px;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    /* Regular */
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
}

.hero-content h1 strong {
    font-weight: 700;
    display: block;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.btn-outline .arrow {
    width: 30px;
    height: 30px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-outline:hover .arrow {
    background: white;
    color: var(--dark-text);
}

/* About Section */
.about {
    padding: 100px 0;
}

.section-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about .lead {
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
}

.about h3 {
    font-size: 32px;
    margin-bottom: 20px;
    max-width: 600px;
}

.about p {
    color: #666;
    max-width: 700px;
}

/* Services Section */
.services {
    padding: 50px 0 100px;
    background-color: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
    /* Flush with details */
}

.service-card {
    background-color: #E6E6E6;
    padding: 30px 20px;
    border-radius: 10px 10px 0 0;
    /* Rounded top only */
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    background-color: #d6d6d6;
}

.service-card.active {
    background-color: var(--section-bg-dark);
    color: white;
}

.service-card h3 {
    font-size: 18px;
    color: inherit;
    font-weight: 500;
}

.service-card .icon {
    align-self: flex-end;
    font-size: 20px;
}

.service-detail {
    background-color: var(--section-bg-dark);
    color: white;
    padding: 60px;
    border-radius: 0 0 10px 10px;
    display: flex;
    gap: 60px;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 20px;
}

.detail-content .subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ccc;
}

.detail-content p {
    color: #aaa;
    font-size: 14px;
}

.detail-list {
    flex: 1;
    display: flex;
    align-items: center;
}

.detail-list ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    font-size: 18px;
}

.detail-list ul li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-container {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.btn-contact {
    background: transparent;
    border: 1px solid #ddd;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Panton', sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #f5f5f5;
}

.arrow-circle {
    width: 24px;
    height: 24px;
    background: var(--section-bg-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.contact-form-wrapper {
    flex: 1;
    background: #F9F9F9;
    padding: 40px;
    border-radius: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    outline: none;
}

.form-group input:focus {
    border-bottom-color: var(--primary-red);
}

.radio-options {
    display: flex;
    gap: 20px;
    align-items: center;
}

.radio-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    cursor: pointer;
}

.info-text {
    font-size: 12px;
    color: #666;
}

.submit-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.submit-label {
    font-weight: 700;
    font-family: 'Panton', sans-serif;
}

.btn-submit-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--section-bg-dark);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.btn-submit-circle:hover {
    transform: translateX(5px);
}

/* Footer */
footer {
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    flex: 1;
}

.footer-logo .tagline {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.footer-details {
    display: flex;
    gap: 60px;
}

.footer-address,
.footer-email,
.footer-phone {
    font-size: 12px;
    color: #333;
}

.footer-address strong,
.footer-email strong,
.footer-phone strong {
    display: block;
    margin-bottom: 5px;
    font-family: 'Panton', sans-serif;
}

.whatsapp-float {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.whatsapp-float span {
    font-size: 12px;
    color: #aaa;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-detail {
        flex-direction: column;
        padding: 30px;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-details {
        flex-direction: column;
        gap: 30px;
    }
}