/* 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: #e0e0e0;
    background-color: #0a0a0a;
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

a {
    color: #ff3108;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff5533;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff3108;
    text-decoration: none;
}

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

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff3108;
    background: rgba(255, 49, 8, 0.1);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    transition: 0.3s;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 0 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff3108 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 49, 8, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 49, 8, 0.4);
    color: #ffffff;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.about-text h3 {
    color: #ff3108;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    background: rgba(255, 49, 8, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 49, 8, 0.2);
}

.feature h4 {
    color: #ff3108;
    margin-bottom: 0.5rem;
}

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

.advantage-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #ff3108;
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-icon img {
    width: 60px;
    height: 60px;
}

.advantage-card h3 {
    color: #ff3108;
    margin-bottom: 1rem;
}

/* Packages Section */
.packages-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.package-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 4rem 2rem 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border-color: #ff3108;
    box-shadow: 0 10px 30px rgba(255, 49, 8, 0.2);
    transform: scale(1.05);
}

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

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

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

.popular-badge {
    position: absolute;
    top: -40px;
    right: -10px;
    background: #ff3108;
    color: #ffffff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-price {
    font-size: 2.5rem;
    color: #ff3108;
    font-weight: 700;
    margin: 1rem 0;
}

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

.package-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
}

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

.package-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff !important;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 49, 8, 0.3);
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff3108;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #b0b0b0;
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.review-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars img {
    width: 20px;
    height: 20px;
}

.review-author {
    margin-top: 1rem;
    color: #ff3108;
    font-weight: 600;
}

/* Subscription Section */
.subscription-section {
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff;
}

.subscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.subscription-text h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.subscription-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.subscription-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.submit-btn {
    width: 100%;
    background: #ffffff;
    color: #ff3108;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff3108;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff3108;
}

.contact-info img {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff3108 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

/* Services Catalog */
.services-catalog {
    padding: 5rem 0;
}

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

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.service-card.featured {
    border-color: #ff3108;
    box-shadow: 0 10px 30px rgba(255, 49, 8, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #ff3108;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
}

.service-icon {
    width: 50px;
    height: 50px;
}

.service-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.25rem;
}

.stars img {
    width: 16px;
    height: 16px;
}

.rating-text {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.service-price {
    font-size: 1.5rem;
    color: #ff3108;
    font-weight: 700;
    margin: 1rem 0;
}

.service-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-advantages,
.service-includes {
    margin-bottom: 1.5rem;
}

.service-advantages h4,
.service-includes h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-advantages ul,
.service-includes ul {
    list-style: none;
}

.service-advantages li,
.service-includes li {
    padding: 0.25rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-advantages li:before,
.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff3108;
    font-weight: bold;
}

.service-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff !important;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 49, 8, 0.3);
}
option {
background-color: #0f0f0f;}

/* Additional Services */
.additional-services {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 5rem 0;
}

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

.additional-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.additional-item:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.additional-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.price {
    color: #ff3108;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Process Overview */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

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

.contact-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.contact-icon {
    margin-bottom: 1rem;
}

.contact-icon img {
    width: 50px;
    height: 50px;
}

.contact-details h3 {
    color: #ff3108;
    margin-bottom: 0.5rem;
}

.contact-details span {
    color: #888;
    font-size: 0.9rem;
}

/* Contact Forms */
.contact-forms {
    padding: 5rem 0;
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.form-container {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.form-container.featured {
    border-color: #ff3108;
    box-shadow: 0 10px 30px rgba(255, 49, 8, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff3108;
    background: rgba(255, 255, 255, 0.08);
}

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

.submit-btn.primary {
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff;
}

/* Office Hours */
.office-hours {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 5rem 0;
}

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

.hours-list {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    color: #ffffff;
    font-weight: 500;
}

.time {
    color: #b0b0b0;
}

.emergency-contact {
    background: rgba(255, 49, 8, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 49, 8, 0.3);
    text-align: center;
}

.emergency-contact img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.emergency-number {
    font-size: 1.5rem;
    color: #ff3108;
    font-weight: 700;
    margin: 1rem 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

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

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff3108;
}

.faq-item h4 {
    color: #ff3108;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 5rem 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item img {
    width: 24px;
    height: 24px;
    margin-top: 0.25rem;
}

.map-placeholder {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 1px solid #333;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* About Page Styles */
.company-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    text-align: center;
}

.story-image img {
    width: 200px;
    height: 200px;
    opacity: 0.7;
}

.mission-vision {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 5rem 0;
}

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

.mv-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.mv-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.mv-card h3 {
    color: #ff3108;
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 0;
}

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

.team-member {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 80px;
    height: 80px;
}

.member-info h4 {
    color: #ff3108;
    margin-bottom: 0.5rem;
}

.certifications {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 5rem 0;
}

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

.cert-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.cert-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.why-choose-us {
    padding: 5rem 0;
}

.advantages-list {
    display: grid;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.advantage-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.advantage-content h4 {
    color: #ff3108;
    margin-bottom: 0.5rem;
}

.contact-cta {
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    padding: 5rem 0;
    text-align: center;
    color: #ffffff;
}

.contact-cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #ff3108;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 5rem;
    text-align: center;
    margin-top: 70px;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon img {
    width: 100px;
    height: 100px;
    opacity: 0.8;
}

.thank-you-message {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

.next-steps {
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.step-content h3 {
    color: #ff3108;
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 1px solid #333;
}

.contact-info-box h3 {
    color: #ff3108;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item img {
    width: 20px;
    height: 20px;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff;
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid #333;
}

.btn:hover {
    transform: translateY(-2px);
}

.resources-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 5rem 0;
    text-align: center;
}

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

.resource-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: #ff3108;
}

.resource-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.resource-link {
    color: #ff3108;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 5rem;
}

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

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff3108 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #888;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    background: rgba(26, 26, 26, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.legal-section h2 {
    color: #ff3108;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ff3108;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-details {
    background: rgba(255, 49, 8, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 49, 8, 0.3);
    margin-top: 1rem;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table h4 {
    color: #ff3108;
    margin-bottom: 1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.cookie-table th {
    background: rgba(255, 49, 8, 0.2);
    color: #ffffff;
    font-weight: 600;
}

.cookie-table td {
    color: #b0b0b0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.primary {
    background: linear-gradient(135deg, #ff3108 0%, #ff5533 100%);
    color: #ffffff;
}

.cookie-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid #333;
}

.cookie-btn.tertiary {
    background: transparent;
    color: #ff3108;
    border: 1px solid #ff3108;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

/* Cookie Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: #ff3108;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    border: 1px solid #333;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 500;
    color: #ffffff;
}

.cookie-category input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 3px;
    position: relative;
    background: transparent;
    cursor: pointer;
}

.cookie-category input[type="checkbox"]:checked {
    background: #ff3108;
    border-color: #ff3108;
}

.cookie-category input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content,
    .story-content,
    .subscription-content,
    .hours-content,
    .map-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-details,
    .cta-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .legal-section {
        padding: 1.5rem;
    }

    .cookie-table {
        overflow-x: auto;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header-content h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .advantages-grid,
    .packages-grid,
    .achievements-grid,
    .reviews-grid,
    .services-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

    .legal-section {
        padding: 1rem;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-card,
.package-card,
.achievement-card,
.review-card,
.service-card,
.team-member,
.cert-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ff3108;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .legal-page {
        margin-top: 0;
        padding-top: 2rem;
    }
}
