/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #F4F4F4;
    background-color: #0B132B;
    min-height: 100vh;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

a {
    color: #00E5FF;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #5E5CE6;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(18, 24, 38, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(94, 92, 230, 0.1);
    transition: background-color 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #5E5CE6, #00E5FF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: #F4F4F4;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00E5FF;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #5E5CE6, #00E5FF);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #F4F4F4;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #5E5CE6, #00E5FF);
    color: #F4F4F4;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(94, 92, 230, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #F4F4F4;
    border: 2px solid #5E5CE6;
}

.btn-secondary:hover {
    background: #5E5CE6;
    color: #F4F4F4;
}

.btn-emergency {
    background: linear-gradient(135deg, #FF4757, #FF3742);
    color: #F4F4F4;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0B132B 0%, #121826 100%);
    padding: 5rem 1rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, #0B132B 0%, #121826 100%);
    text-align: center;
}

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

/* Values Section */
.values {
    padding: 4rem 0;
    background: #121826;
}

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

.value-card {
    background: rgba(18, 24, 38, 0.8);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(94, 92, 230, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(94, 92, 230, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #00E5FF;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

/* How We Work Section */
.how-we-work {
    padding: 4rem 0;
    background: #0B132B;
}

.how-we-work h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(94, 92, 230, 0.1);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5E5CE6, #00E5FF);
    color: #F4F4F4;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.trusted-by {
    padding: 4rem 0;
    background: #121826;
}

.trusted-by h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: rgba(18, 24, 38, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #00E5FF;
}

/* Location Section */
.location {
    padding: 4rem 0;
    background: #0B132B;
}

.location h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.location p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #0B132B;
    border-top: 1px solid rgba(94, 92, 230, 0.1);
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(94, 92, 230, 0.1);
    border-radius: 50%;
    color: #F4F4F4;
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #5E5CE6;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(94, 92, 230, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(18, 24, 38, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-top: 1px solid rgba(94, 92, 230, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
    margin-bottom: 0.5rem;
    color: #00E5FF;
}

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

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background: #121826;
}

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

.about-text h2 {
    color: #00E5FF;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.values-section {
    padding: 4rem 0;
    background: #0B132B;
}

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

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

.value-detailed {
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
}

.team-stats {
    padding: 4rem 0;
    background: #121826;
}

.team-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-item {
    text-align: center;
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00E5FF;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Page Styles */
.services-main {
    padding: 4rem 0;
    background: #121826;
}

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

.service-card {
    background: rgba(18, 24, 38, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(94, 92, 230, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    color: #00E5FF;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #00E5FF;
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card ul li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00E5FF;
    font-weight: bold;
}

.specializations {
    padding: 4rem 0;
    background: #0B132B;
}

.specializations h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.specialization-item {
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
    text-align: center;
}

.specialization-item h3 {
    color: #00E5FF;
    margin-bottom: 1rem;
}

/* Team Page Styles */
.team-section {
    padding: 4rem 0;
    background: #121826;
}

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

.team-member {
    background: rgba(18, 24, 38, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(94, 92, 230, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(94, 92, 230, 0.2);
}

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

.member-info {
    padding: 2rem;
}

.member-info h3 {
    color: #00E5FF;
    margin-bottom: 0.5rem;
}

.member-title {
    color: #5E5CE6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.member-specializations span {
    background: rgba(94, 92, 230, 0.2);
    color: #00E5FF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.team-approach {
    padding: 4rem 0;
    background: #0B132B;
}

.team-approach h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.approach-item {
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
    text-align: center;
}

.approach-item h3 {
    color: #00E5FF;
    margin-bottom: 1rem;
}

/* Reviews Page Styles */
.reviews-stats {
    padding: 4rem 0;
    background: #121826;
}

.reviews-main {
    padding: 4rem 0;
    background: #0B132B;
}

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

.review-card {
    background: rgba(18, 24, 38, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card h3 {
    color: #00E5FF;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #00E5FF;
}

.review-date {
    font-size: 0.9rem;
    opacity: 0.7;
}

.leave-review {
    padding: 4rem 0;
    background: #121826;
    text-align: center;
}

.leave-review-content h2 {
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-main {
    padding: 4rem 0;
    background: #121826;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: #00E5FF;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: #00E5FF;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

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

.contact-details a {
    color: #F4F4F4;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #00E5FF;
}

.emergency-contact {
    background: rgba(255, 71, 87, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 71, 87, 0.2);
    margin-top: 2rem;
}

.emergency-contact h3 {
    color: #FF4757;
    margin-bottom: 1rem;
}

.emergency-contact a {
    color: #FF4757;
    font-weight: 600;
}

.contact-form-section h2 {
    margin-bottom: 2rem;
    color: #00E5FF;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #F4F4F4;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid rgba(94, 92, 230, 0.2);
    border-radius: 8px;
    background: rgba(18, 24, 38, 0.8);
    color: #F4F4F4;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00E5FF;
}

.consent-group {
    margin-top: 1rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.error-message {
    color: #FF4757;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.transport-info {
    padding: 4rem 0;
    background: #0B132B;
}

.transport-info h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.transport-item {
    display: flex;
    gap: 1rem;
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
}

.transport-icon {
    width: 40px;
    height: 40px;
    color: #00E5FF;
    flex-shrink: 0;
}

.transport-icon svg {
    width: 100%;
    height: 100%;
}

.transport-details h3 {
    color: #00E5FF;
    margin-bottom: 0.5rem;
}

/* FAQ Page Styles */
.faq-main {
    padding: 4rem 0;
    background: #121826;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(94, 92, 230, 0.3);
    background: transparent;
    color: #F4F4F4;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.faq-category.active,
.faq-category:hover {
    background: #5E5CE6;
    border-color: #5E5CE6;
    color: #F4F4F4;
}

.faq-category-content {
    display: none;
}

.faq-category-content.active {
    display: block;
}

.faq-item {
    background: rgba(18, 24, 38, 0.8);
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(94, 92, 230, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #F4F4F4;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: rgba(94, 92, 230, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: #00E5FF;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-contact {
    margin-top: 4rem;
    text-align: center;
    background: rgba(18, 24, 38, 0.6);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
}

.faq-contact h2 {
    margin-bottom: 1rem;
}

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

/* Privacy Policy Styles */
.privacy-content {
    padding: 4rem 0;
    background: #121826;
}

.privacy-document {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
}

.privacy-section h2 {
    color: #00E5FF;
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    color: #5E5CE6;
    margin: 1.5rem 0 1rem;
}

.privacy-section ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

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

.privacy-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(94, 92, 230, 0.1);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(94, 92, 230, 0.2);
}

/* Success Page Styles */
.success-page {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0B132B 0%, #121826 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: #00E5FF;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-content h1 {
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.success-details {
    background: rgba(18, 24, 38, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
    margin-bottom: 2rem;
    text-align: left;
}

.success-details h2 {
    color: #00E5FF;
    margin-bottom: 1rem;
}

.success-details ul {
    list-style: none;
    padding: 0;
}

.success-details ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.success-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00E5FF;
    font-weight: bold;
}

.success-emergency {
    background: rgba(255, 71, 87, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 71, 87, 0.2);
    margin: 2rem 0;
}

.success-emergency h3 {
    color: #FF4757;
    margin-bottom: 1rem;
}

.emergency-phone {
    color: #FF4757;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    display: block;
    margin: 1rem 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.success-contact {
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
    text-align: left;
}

.success-contact h3 {
    color: #00E5FF;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method .contact-icon {
    width: 30px;
    height: 30px;
    color: #00E5FF;
    flex-shrink: 0;
}

.contact-method h4 {
    color: #00E5FF;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-method p {
    margin: 0;
}

.contact-method a {
    color: #F4F4F4;
}

/* Blog Page Styles */
.blog-main {
    padding: 4rem 0;
    background: #121826;
}

.blog-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: rgba(18, 24, 38, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(94, 92, 230, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(94, 92, 230, 0.2);
}

.blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card.featured .blog-image img {
    height: 300px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: rgba(94, 92, 230, 0.2);
    color: #00E5FF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.blog-date {
    color: #888;
    font-size: 0.9rem;
}

.blog-content h2,
.blog-content h3 {
    margin-bottom: 1rem;
}

.blog-content h2 a,
.blog-content h3 a {
    color: #F4F4F4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-content h2 a:hover,
.blog-content h3 a:hover {
    color: #00E5FF;
}

.blog-author {
    margin-top: 1.5rem;
    color: #00E5FF;
    font-weight: 600;
}

.blog-categories {
    background: rgba(18, 24, 38, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
    margin-bottom: 3rem;
}

.blog-categories h2 {
    margin-bottom: 1.5rem;
    color: #00E5FF;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-tag {
    background: rgba(94, 92, 230, 0.2);
    color: #F4F4F4;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: #5E5CE6;
    color: #F4F4F4;
}

.blog-newsletter {
    background: rgba(18, 24, 38, 0.8);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(94, 92, 230, 0.1);
    text-align: center;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
    color: #00E5FF;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid rgba(94, 92, 230, 0.2);
    border-radius: 8px;
    background: rgba(18, 24, 38, 0.8);
    color: #F4F4F4;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00E5FF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(18, 24, 38, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(94, 92, 230, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

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

    .success-actions,
    .faq-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-content {
        gap: 3rem;
    }
}

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

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

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

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .value-card,
    .service-card,
    .team-member,
    .review-card {
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.faq-question:focus {
    outline: 2px solid #00E5FF;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .value-card,
    .service-card,
    .team-member,
    .review-card,
    .testimonial-card,
    .step-card,
    .stat-item {
        border-width: 2px;
        border-color: #00E5FF;
    }
}

/* Print styles */
@media print {
    .navbar,
    .cookie-modal,
    .btn,
    .footer-social {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: none !important;
        padding: 0 !important;
    }
}