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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #111827;
}


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


/* Header */
.header {
    background: #1f2937;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid #374151;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand h1 {
    color: #60a5fa;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.5px;
}

.cara-orange {
    color: #ff8c00;
}

.brand-slogan {
    color: #d1d5db;
    font-size: 0.8rem;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #d1d5db;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #60a5fa;
}


/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #d1d5db;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)),
        url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: local;
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #e5e7eb;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.video-preview {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.video-preview:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(96, 165, 250, 0.4);
}

.video-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-preview:hover::before {
    opacity: 1;
}

.play-button {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    color: #60a5fa;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.video-preview:hover .play-button {
    color: #ffffff;
    transform: scale(1.1);
}

.video-preview p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #d1d5db;
    letter-spacing: 0.02em;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
}

.btn-outline:hover {
    background: #60a5fa;
    color: #111827;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #1f2937;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f9fafb;
}

.about-story p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-story strong {
    color: #60a5fa;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: #374151;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    color: #d1d5db;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #374151;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h5 {
    color: #f9fafb;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-content p {
    color: #d1d5db;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #111827;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f9fafb;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #374151;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.service-card p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #111827;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #1f2937;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #374151;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: #3b82f6;
    position: relative;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f9fafb;
    padding-top: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #4b5563;
    position: relative;
    padding-left: 2rem;
    color: #d1d5db;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Samples Section */
.samples {
    padding: 80px 0;
    background: #1f2937;
}

.samples h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f9fafb;
}

.samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.sample-card {
    background: #374151;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #4b5563;
    transition: all 0.3s;
}

.sample-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.sample-video {
    height: 200px;
    background: linear-gradient(45deg, #4338ca, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-thumbnail {
    text-align: center;
    color: white;
}

.video-thumbnail .play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sample-info {
    padding: 1.5rem;
}

.sample-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #f9fafb;
}

.sample-lot {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.sample-details {
    display: flex;
    gap: 2rem;
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label {
    font-size: 0.875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value {
    font-weight: 600;
    font-size: 1.125rem;
    color: #e5e7eb;
}

.value.good {
    color: #10b981;
}

.value.caution {
    color: #f59e0b;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #111827;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: #1f2937;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #374151;
    transition: all 0.3s;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.reviewer-details h4 {
    color: #f9fafb;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.reviewer-location {
    color: #9ca3af;
    font-size: 0.9rem;
}

.review-rating .stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-content p {
    color: #d1d5db;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
}

.review-meta {
    color: #9ca3af;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: #1f2937;
    border-radius: 12px;
    padding: 3rem 2rem;
    border: 1px solid #374151;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.stat-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: #1f2937;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.areas-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.us-map {
    background: #374151;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #4b5563;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 8px;
}


.pin {
    fill: #60a5fa;
    stroke: #ffffff;
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.pin:hover {
    fill: #3b82f6;
    r: 10;
    stroke-width: 3;
}

.pin-label {
    fill: #d1d5db;
    font-size: 12px;
    font-weight: 500;
    text-anchor: middle;
    font-family: 'Inter', sans-serif;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #374151;
    border-radius: 10px;
    border: 1px solid #4b5563;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(5px);
    background: #3f4a57;
    border-color: #60a5fa;
}

.location-pin {
    width: 12px;
    height: 12px;
    background: #60a5fa;
    border-radius: 50%;
    border: 2px solid #ffffff;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.location-info h4 {
    color: #f9fafb;
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.location-info p {
    color: #d1d5db;
    margin: 0;
    font-size: 0.85rem;
}

.areas-notice {
    text-align: center;
    padding: 2rem;
    background: #374151;
    border-radius: 12px;
    border: 1px solid #4b5563;
}

.areas-notice p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-slogan-footer {
    color: #60a5fa;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.live-agent-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    background: #374151;
    border: 1px solid #60a5fa;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.live-agent-link:hover {
    background: #60a5fa;
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-methods span {
    color: #d1d5db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 5rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-bottom-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sticky-bottom-content .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    min-width: 120px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkbox styling */
.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.checkbox-text {
    color: #d1d5db;
}

.checkbox-text a {
    color: #60a5fa;
    text-decoration: none;
}

.checkbox-text a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Order Overlay - Full Screen */
.order-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1f2937;
    overflow-y: auto;
}

.order-close-icon {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.close-line {
    width: 24px;
    height: 2px;
    background-color: #9ca3af;
    transition: all 0.3s ease;
}

.close-line-1 {
    transform: rotate(45deg);
    position: absolute;
}

.close-line-2 {
    transform: rotate(-45deg);
    position: absolute;
}

.order-close-icon:hover .close-line {
    background-color: #d1d5db;
}

.order-content {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.order-header {
    text-align: center;
    margin-bottom: 3rem;
}

.order-header h2 {
    color: #f9fafb;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Order Form */
.order-form {
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 1.5rem;
    color: #f9fafb;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #d1d5db;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #4b5563;
    border-radius: 6px;
    font-size: 1rem;
    background: #374151;
    color: #e5e7eb;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.form-error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    display: none;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    border: 2px solid #4b5563;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    background: #374151;
}

.payment-option:hover {
    border-color: #60a5fa;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked + label {
    color: #60a5fa;
}

.payment-option input[type="radio"]:checked ~ {
    border-color: #60a5fa;
    background-color: #1e3a8a;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: #d1d5db;
}

.payment-icon {
    font-size: 1.5rem;
}

/* Live Agent Section */
.live-agent-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #4b5563;
    text-align: center;
}

.live-agent-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: 2px solid #6b7280;
    background: transparent;
    color: #d1d5db;
    transition: all 0.3s ease;
}

.live-agent-btn:hover {
    border-color: #60a5fa;
    background: #60a5fa;
    color: #ffffff;
    transform: translateY(-2px);
}

.agent-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px - 80px);
        background: #1f2937;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.3s ease;
        padding: 2rem 0 2rem 0;
        border-top: 1px solid #374151;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #374151;
    }
    
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 1rem;
    }
    
    .video-preview {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
    
    .play-button {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .services,
    .pricing,
    .samples,
    .reviews,
    .about {
        padding: 60px 0;
    }
    
    .services h2,
    .pricing h2,
    .samples h2,
    .reviews h2,
    .about h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-box {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    
    .highlight-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .highlight-item:hover {
        transform: translateY(-3px);
    }
    
    .highlight-icon {
        margin-bottom: 0.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-header {
        margin-bottom: 1rem;
    }
    
    .reviews-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .samples-grid {
        grid-template-columns: 1fr;
    }
    
    .sample-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .us-map {
        padding: 1rem;
    }
    
    .pin-label {
        font-size: 10px;
    }
    
    .location-item {
        padding: 0.75rem;
    }
    
    .location-item:hover {
        transform: translateY(-2px);
    }
    
    /* Center pricing buttons on mobile */
    .pricing-card .btn {
        width: 100%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
    background-color: #111;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.faq-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #ff9900;
    margin-bottom: 15px;
}

.faq-item p, .faq-item ul {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
}

.faq-item ul {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-item a {
    color: #ff9900;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}