/* CSS Variables */
:root {
    --red: #C41E3A;
    --red-dark: #A01830;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #666666;
    --font-family: 'Montserrat', sans-serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-red {
    color: var(--red);
}

.highlight {
    background-color: var(--red);
    color: var(--white);
    padding: 5px 15px;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--red-dark);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo img {
    width: 120px;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.nav ul {
    display: flex;
    gap: 40px;
}

.nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
}

.header.scrolled .nav a {
    color: var(--black);
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn span {
    background-color: var(--black);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--black);
    padding: 100px 20px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--red);
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 8px;
    margin-bottom: 40px;
    font-weight: 500;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--red);
    border-radius: 10px;
    z-index: -1;
}

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

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--red);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Approach Section */
.approach {
    padding: 100px 0;
    background-color: var(--white);
}

.approach h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.approach-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: var(--gray-light);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.approach-item:hover {
    background-color: var(--red);
    color: var(--white);
}

.approach-icon {
    width: 12px;
    height: 12px;
    background-color: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.approach-item:hover .approach-icon {
    background-color: var(--white);
}

.approach-tagline {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.why-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--red);
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--red);
}

.feature p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonials-grid .instagram-media {
    margin: 0 auto !important;
}

.instagram-wrapper {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
}

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

.mission h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission .text-red {
    color: var(--white);
    opacity: 0.8;
}

.mission p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background-color: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: var(--red);
    color: var(--white);
}

.contact-item:hover a {
    color: var(--white);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--red);
}

.contact-item:hover svg {
    color: var(--white);
}

.contact-item a {
    font-weight: 500;
    color: var(--black);
    transition: color 0.3s ease;
}

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

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav a {
        color: var(--black);
        font-size: 1.1rem;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .approach-list {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-video {
        display: block;
    }

    .testimonials-grid {
        padding: 0 10px;
    }

    .hero .tagline {
        letter-spacing: 4px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px;
    }

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .btn {
        padding: 12px 30px;
    }
}
