/* ================================
   SUPERPACT LLC - RED WHITE BLACK
   Bold Performance Marketing Design
   ================================ */

/* Font Import - Horizon for titles */
@import url('https://fonts.cdnfonts.com/css/horizon');

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

:root {
    --black: #000000;
    --red: #C41E3A;
    --red-dark: #8B0000;
    --red-light: #E63946;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
    --border-gray: #E5E5E5;
    --font-headline: 'Barlow Semi Condensed', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headline);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo-img {
    height: 84px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    transition: color 0.3s ease;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--black);
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(196, 30, 58, 0.1) 100%);
    transform: rotate(45deg);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.85;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 800;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background-color: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-secondary:hover {
    background-color: var(--red-dark);
    color: var(--white);
    border-color: var(--red-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
}

.btn-full {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 48px;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
}

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

.section-title {
    text-align: center;
    font-size: 48px;
    color: var(--black);
    margin-bottom: 60px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--red);
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -0.5px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.service-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--white);
    padding: 100px 0;
    text-align: center;
    color: var(--black);
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3,
.footer-links h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--red-light);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-headline);
}

.footer-info p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-email {
    margin-top: 16px;
}

.footer-info a {
    color: var(--red-light);
    text-decoration: none;
}

.footer-info a:hover {
    color: var(--red);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--red-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Contact Page Styles */
.page-header {
    background: var(--black);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.page-header p {
    font-size: 20px;
    opacity: 0.85;
}

.contact-content {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    color: var(--black);
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--black);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-gray);
    border-radius: 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    padding: 40px;
}

.contact-info h2,
.info-section h3 {
    color: var(--black);
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    color: var(--red);
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-item p,
.info-item a {
    color: var(--text-gray);
    font-size: 16px;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--red);
}

.info-callout {
    background-color: var(--light-gray);
    padding: 30px;
    margin-top: 40px;
    border-left: 5px solid var(--red);
}

.info-callout h4 {
    color: var(--black);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 900;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.info-callout p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background-color: var(--white);
}

.service-card-detail {
    background-color: var(--light-gray);
    padding: 40px 35px;
    border-radius: 0;
    border-left: 5px solid var(--red);
    transition: all 0.3s ease;
}

.service-card-detail:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.15);
}

.service-card-detail h3 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 900;
    letter-spacing: -0.5px;
    font-family: var(--font-headline);
    text-transform: uppercase;
}

.service-card-detail p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .about-content h2,
    .section-title {
        font-size: 32px;
    }
}
