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

:root {
    --primary-color: #000000;      /* Black */
    --secondary-color: #C8102E;    /* Bold Red */
    --text-color: #1A1A1A;         /* Dark Gray */
    --light-bg: #FFFFFF;           /* White */
    --white: #FFFFFF;              /* White */
    --accent-gray: #A0A0A0;        /* Silver/Metallic Gray */
    --light-gray: #F5F5F5;         /* Light Gray */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header styles */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Mobile Menu Button */
.nav-toggle {
    display: none; /* Hide the checkbox */
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Hero section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.jpg');
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: #a00d25; 
}

/* Section styles */
.section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.section:nth-child(even) {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title p {
    margin-top: 1.5rem;
    color: var(--text-color);
}


.section:first-of-type {
    margin-top: 80px;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Grid layouts */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

/* Card styles */
.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--accent-gray);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

/* Price styles */
.price {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 1rem 0;
}

/* Testimonial styles */
.testimonial {
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

/* Responsive design */
/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 6rem 2rem;
    }
}

/* Medium screens (tablets, 768px to 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card img {
        height: 200px;
    }
}

/* Small screens (mobile, up to 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    /* Show menu when checkbox is checked */
    #nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    /* Animate hamburger to X */
    #nav-toggle:checked ~ .menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #nav-toggle:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    #nav-toggle:checked ~ .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Hero */
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Mobile Grids */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Sections */
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* Mobile Cards */
    .card {
        margin-bottom: 1rem;
    }
    
    .card img {
        height: 180px;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Extra small screens (small mobile devices) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .card-content {
        padding: 1rem;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Utility and component classes for inline styles */

.mt-80 { margin-top: 80px !important; }
.mb-2 { margin-bottom: 2rem !important; }
.max-w-700 { max-width: 700px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.overflow-x-auto { overflow-x: auto !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light-gray { background-color: var(--light-gray) !important; }
.text-white { color: var(--white) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-center { text-align: center !important; }
.fw-bold { font-weight: bold !important; }
.fs-1-2rem { font-size: 1.2rem !important; }
.p-2 { padding: 2rem !important; }
.w-100 { width: 100% !important; }

/* FAQ Accordion Styles */
.faq-item {
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 1px solid var(--accent-gray);
  background: var(--light-gray);
  overflow: hidden;
}
.faq-question {
  font-weight: bold;
  cursor: pointer;
  padding: 1rem;
  font-size: 1.1rem;
  outline: none;
  transition: background 0.2s;
  list-style: none;
}
.faq-item[open] .faq-question {
  background: var(--secondary-color);
  color: var(--white);
}
.faq-answer {
  padding: 1rem;
  background: #fff;
  border-top: 1px solid var(--accent-gray);
}

/* Video Container Styles */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.play-button svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.video-wrapper:hover .play-button {
    background: #a00d25;
}

@media (max-width: 767px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 30px;
        height: 30px;
    }
}

/* Table Styles */
.pricing-table {
    border-collapse: collapse;
    width: 100%;
}

.pricing-table th {
    padding: 1rem;
    border-bottom: 2px solid var(--accent-gray);
    text-align: left;
}

.pricing-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--accent-gray);
}

/* Button Styles */
.btn-inverse {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* Image Styles */
.feature-icon {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Section Styles */
.section-top-margin {
    margin-top: 80px;
} 