/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F8F9FA;
    background-color: #1B1F3A;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #A8DADC;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(28px, 4vw, 48px);
}

h2 {
    font-size: clamp(24px, 3.5vw, 36px);
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
}

h4 {
    font-size: clamp(18px, 2.5vw, 24px);
}

p {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 16px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #E63946, #dc2626);
    color: #F1FAEE;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #A8DADC;
    border: 2px solid #A8DADC;
}

.btn-secondary:hover {
    background: #A8DADC;
    color: #1B1F3A;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #E63946;
    border: 2px solid #E63946;
}

.btn-outline:hover {
    background: #E63946;
    color: #F1FAEE;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: clamp(16px, 2.5vw, 20px);
}

/* Header */
.header {
    background: rgba(27, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 218, 220, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #E63946;
    font-size: clamp(20px, 3vw, 28px);
    margin: 0;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: #F8F9FA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E63946;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #A8DADC;
}

.cta-btn {
    background: #E63946;
    color: #F1FAEE !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1B1F3A 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23E63946" fill-opacity="0.05" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #A8DADC, #F1FAEE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 2rem;
    color: #F8F9FA;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #F8F9FA;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #1B1F3A;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: #E63946;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(168, 218, 220, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h4 {
    font-size: clamp(24px, 3vw, 36px);
    color: #E63946;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: clamp(14px, 2vw, 16px);
    margin: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1B1F3A 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(241, 250, 238, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: #E63946;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: #A8DADC;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #F8F9FA;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #1B1F3A;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(241, 250, 238, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(168, 218, 220, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 218, 220, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    border-color: #E63946;
    background: rgba(230, 57, 70, 0.1);
}

.service-header {
    margin-bottom: 2rem;
    position: relative;
}

.service-header h3 {
    color: #A8DADC;
    margin-bottom: 1rem;
}

.price {
    font-size: clamp(24px, 3vw, 32px);
    color: #E63946;
    font-weight: 700;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #E63946;
    color: #F1FAEE;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E63946;
    font-weight: bold;
}

.service-description {
    color: #F8F9FA;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1B1F3A 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(241, 250, 238, 0.05);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stars {
    color: #E63946;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #F8F9FA;
}

.author-info h4 {
    color: #A8DADC;
    margin-bottom: 0.5rem;
}

.author-info span {
    color: #F8F9FA;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Case Studies Section */
.case-studies {
    padding: 80px 0;
    background: #1B1F3A;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.case-card {
    background: rgba(241, 250, 238, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    color: #A8DADC;
    margin-bottom: 1rem;
}

.case-results {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.result {
    background: rgba(230, 57, 70, 0.2);
    color: #E63946;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1B1F3A 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(241, 250, 238, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(241, 250, 238, 0.1);
}

.contact-icon {
    font-size: 2rem;
    color: #E63946;
}

.contact-details h3 {
    color: #A8DADC;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
    color: #F8F9FA;
}

.contact-hours {
    background: rgba(241, 250, 238, 0.05);
    padding: 2rem;
    border-radius: 15px;
}

.contact-hours h3 {
    color: #A8DADC;
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(168, 218, 220, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

/* Order Form Section */
.order-form {
    padding: 80px 0;
    background: #1B1F3A;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(241, 250, 238, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(168, 218, 220, 0.1);
}

.audit-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #A8DADC;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(168, 218, 220, 0.2);
    border-radius: 10px;
    background: rgba(241, 250, 238, 0.05);
    color: #F8F9FA;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E63946;
    background: rgb(38 42 67);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: #E63946;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(168, 218, 220, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #E63946;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #F8F9FA;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #F8F9FA;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #A8DADC;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 218, 220, 0.1);
    color: #F8F9FA;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 60px;
    }
    
    .about,
    .benefits,
    .services,
    .testimonials,
    .case-studies,
    .contact,
    .order-form {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.benefit-card,
.service-card,
.testimonial-card,
.case-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: #E63946;
    color: #F1FAEE;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1B1F3A;
}

::-webkit-scrollbar-thumb {
    background: #E63946;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dc2626;
} 