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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 170, 23, 0.2);
    border-bottom: 2px solid #ffaa17;
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffaa17;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 170, 23, 0.5);
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffaa17;
    background: rgba(255, 170, 23, 0.1);
    box-shadow: 0 0 15px rgba(255, 170, 23, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffaa17;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(255, 170, 23, 0.5);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    color: #fff;
    padding: 0 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffaa17;
    text-shadow: 0 0 20px rgba(255, 170, 23, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 170, 23, 0.8); }
    to { text-shadow: 0 0 30px rgba(255, 170, 23, 1), 0 0 40px rgba(255, 38, 23, 0.5); }
}

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

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

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffaa17 0%, #ff2617 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 170, 23, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 170, 23, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffaa17;
    border: 2px solid #ffaa17;
    box-shadow: 0 0 10px rgba(255, 170, 23, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 170, 23, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 170, 23, 0.5);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(255, 170, 23, 0.5));
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffaa17;
    text-shadow: 0 0 15px rgba(255, 170, 23, 0.5);
}

/* Company Info Section */
.company-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 170, 23, 0.2);
    border-bottom: 1px solid rgba(255, 170, 23, 0.2);
}

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

.info-card {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 170, 23, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    border-color: #ffaa17;
}

.info-card h3 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 38, 23, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 38, 23, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 38, 23, 0.3);
    border-color: #ff2617;
}

.benefit-icon {
    font-size: 2rem;
    color: #ff2617;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 38, 23, 0.5);
}

.benefit-item h3 {
    color: #ff2617;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #ccc;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.service-card {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 170, 23, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    border-color: #ffaa17;
}

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

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

/* Achievements Section */
.achievements {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.achievement-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 38, 23, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 38, 23, 0.2);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 38, 23, 0.3);
    border-color: #ff2617;
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff2617;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 38, 23, 0.5);
}

.achievement-label {
    color: #ccc;
    font-size: 1.1rem;
}

/* Subscription Section */
.subscription {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
}

.subscription-content h2 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 170, 23, 0.5);
}

.subscription-content p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.subscription-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 170, 23, 0.3);
    border-radius: 5px;
    background: rgba(255, 170, 23, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #ffaa17;
    box-shadow: 0 0 10px rgba(255, 170, 23, 0.5);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #888;
}

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

/* Contact Info Section */
.contact-info {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 170, 23, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    border-color: #ffaa17;
}

.contact-item h3 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

.contact-item a {
    color: #ffaa17;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ff2617;
    text-shadow: 0 0 5px rgba(255, 38, 23, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 2px solid #ffaa17;
    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: #ffaa17;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p, .footer-section li {
    color: #ccc;
    line-height: 1.6;
}

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

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

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

.footer-section a:hover {
    color: #ffaa17;
    text-shadow: 0 0 5px rgba(255, 170, 23, 0.5);
}

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 170, 23, 0.2);
    color: #888;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 170, 23, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    color: #ffaa17;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 170, 23, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 1.5rem;
    border-top: 2px solid #ffaa17;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text h3 {
    color: #ffaa17;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #ccc;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ffaa17;
    max-width: 500px;
    width: 90%;
}

.modal-content h3 {
    color: #ffaa17;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ccc;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ffaa17;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-bottom: 2px solid #ffaa17;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .subscription-form {
        flex-direction: column;
    }

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

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

/* About Page Specific Styles */
.company-story {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.story-text p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.responsive-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 170, 23, 0.3));
}

.values {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.value-card {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    border-color: #ffaa17;
}

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

.value-card h3 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #ccc;
    line-height: 1.6;
}

.team {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.team-member {
    background: rgba(255, 38, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 38, 23, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 38, 23, 0.3);
    border-color: #ff2617;
}

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

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: drop-shadow(0 0 15px rgba(255, 38, 23, 0.3));
}

.member-info h3 {
    color: #ff2617;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-weight: bold;
}

.member-info p {
    color: #ccc;
    line-height: 1.6;
}

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

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

.cert-item {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    border-color: #ffaa17;
}

.cert-item h3 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cert-item p {
    color: #ccc;
    line-height: 1.6;
}

.cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-content h2 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 170, 23, 0.5);
}

.cta-content p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

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

/* Services Page Specific Styles */
.services-detailed {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.service-category {
    margin-bottom: 4rem;
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
}

.service-category h3 {
    color: #ffaa17;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 170, 23, 0.5);
}

.service-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-description p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
}

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffaa17;
    font-weight: bold;
}

.service-pricing {
    background: rgba(255, 38, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 38, 23, 0.2);
}

.service-pricing h4 {
    color: #ff2617;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 38, 23, 0.1);
    border-radius: 5px;
    color: #ccc;
}

.price-row span:last-child {
    color: #ff2617;
    font-weight: bold;
}

.reviews {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.review-card {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    border-color: #ffaa17;
}

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

.review-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: #ffaa17;
    font-weight: bold;
    text-align: right;
}

.booking {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.booking-content h2 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 170, 23, 0.5);
}

.booking-content p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row .form-group {
    flex: 1;
}

/* Contact Page Specific Styles */
.contact-details {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.contact-card {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    border-color: #ffaa17;
}

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

.contact-card h3 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #ccc;
    line-height: 1.6;
}

.contact-form-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-header h2 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 170, 23, 0.5);
}

.form-header p {
    color: #ccc;
    font-size: 1.2rem;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ffaa17;
}

.quick-contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.quick-contact-content h2 {
    color: #ff2617;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 0 0 15px rgba(255, 38, 23, 0.5);
}

.quick-contact-content p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

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

.service-areas {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.area-card {
    background: rgba(255, 38, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 38, 23, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 38, 23, 0.3);
    border-color: #ff2617;
}

.area-card h3 {
    color: #ff2617;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.area-card p {
    color: #ccc;
    line-height: 1.6;
}

.faq {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.faq-item {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
    border-color: #ffaa17;
}

.faq-item h3 {
    color: #ffaa17;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Legal Pages Specific Styles */
.legal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.legal-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.legal-info h2 {
    color: #ffaa17;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(255, 170, 23, 0.5);
}

.legal-info p {
    color: #ccc;
    font-size: 1.1rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h3 {
    color: #ffaa17;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-text h4 {
    color: #ff2617;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.legal-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-text ul {
    color: #ccc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-text a {
    color: #ffaa17;
    text-decoration: none;
}

.legal-text a:hover {
    color: #ff2617;
    text-decoration: underline;
}

.contact-details {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    margin-top: 2rem;
}

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

.contact-details a {
    color: #ffaa17;
    text-decoration: none;
}

.contact-details a:hover {
    color: #ff2617;
    text-decoration: underline;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 170, 23, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th, .cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 170, 23, 0.2);
}

.cookie-table th {
    background: rgba(255, 170, 23, 0.1);
    color: #ffaa17;
    font-weight: bold;
}

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

.cookie-management {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.cookie-controls {
    max-width: 600px;
    margin: 0 auto;
}

.cookie-control {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    margin-bottom: 2rem;
}

.cookie-control h3 {
    color: #ffaa17;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.cookie-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 170, 23, 0.1);
    border-radius: 5px;
    color: #ccc;
}

.status {
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: bold;
}

.status.enabled {
    background: #28a745;
    color: #fff;
}

.status.disabled {
    background: #dc3545;
    color: #fff;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Thank You Page Specific Styles */
.thank-you {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

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

.thank-you h1 {
    color: #ffaa17;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 170, 23, 0.5);
}

.thank-you-message {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.next-steps h2 {
    color: #ffaa17;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.step {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    text-align: center;
}

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

.step h3 {
    color: #ffaa17;
    margin-bottom: 1rem;
}

.step p {
    color: #ccc;
    line-height: 1.6;
}

.contact-info-quick {
    margin-bottom: 3rem;
}

.contact-info-quick h2 {
    color: #ff2617;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 38, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 38, 23, 0.2);
    transition: all 0.3s ease;
}

.quick-contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 38, 23, 0.3);
}

.quick-contact-item .contact-icon {
    font-size: 2rem;
}

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

.contact-details p {
    color: #ccc;
}

.contact-details a {
    color: #ff2617;
    text-decoration: none;
}

.contact-details a:hover {
    color: #ffaa17;
    text-decoration: underline;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

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

.additional-info .info-card {
    background: rgba(255, 170, 23, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 170, 23, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.additional-info .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 170, 23, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 170, 23, 0.5));
}

.additional-info .info-card h3 {
    color: #ffaa17;
    margin-bottom: 1rem;
}

.additional-info .info-card p {
    color: #ccc;
    line-height: 1.6;
}
option {
    background-color: #1a1a1a;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .legal-header {
        flex-direction: column;
        text-align: center;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

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

    .thank-you h1 {
        font-size: 2.5rem;
    }
}
@media (max-width: 480px) {
    .quick-contact-item, .price-row {
        flex-direction: column;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}