/* Dealkylation Styles */
:root {
    --bg-color: #090B10;
    --primary-color: #1A1D2E;
    --accent-color: #FF2E88;
    --secondary-color: #38FFF8;
    --text-color: #ECECEC;
    --soft-accent: #2C2F45;
    --contrast-color: #FFD234;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background-color: rgba(26, 29, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--soft-accent);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--secondary-color) !important;
    font-size: 1.8rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 15px;
    border-radius: 8px;
    transform-origin: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    background-color: rgba(56, 255, 248, 0.15);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(56, 255, 248, 0.1);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2856, 255, 248, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(9, 11, 16, 0.9) 0%, rgba(26, 29, 46, 0.9) 100%), url('img/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 46, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(56, 255, 248, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(26, 29, 46, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 255, 248, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.6s both;
}

.hero-image img {
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Accent text */
.accent-text {
    color: var(--accent-color);
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border: none;
    color: var(--bg-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 46, 136, 0.3);
}

.btn-outline-secondary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--secondary-color);
    color: var(--bg-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56, 255, 248, 0.3);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Overview */
.services-overview {
    background-color: var(--primary-color);
    position: relative;
}

.service-card {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 255, 248, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    opacity: 0.8;
    line-height: 1.6;
    flex-grow: 1;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--bg-color);
}

.content-section {
    padding: 2rem 0;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(44, 47, 69, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(44, 47, 69, 0.5);
    transform: translateX(10px);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.feature-item h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    opacity: 0.8;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--soft-accent) 100%);
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    border-top: 1px solid var(--soft-accent);
}

.footer-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    opacity: 1;
    padding-left: 5px;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.footer-divider {
    border-color: var(--soft-accent);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    opacity: 0.6;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Mission Cards */
.mission-card {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 255, 248, 0.1);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.mission-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Team Cards */
.team-card {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 255, 248, 0.1);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.team-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Approach Steps */
.approach-steps {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(44, 47, 69, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(44, 47, 69, 0.5);
    transform: translateX(10px);
}

.step-number {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: var(--bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

/* Statistics */
.stat-card {
    padding: 2rem;
    background: rgba(44, 47, 69, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(44, 47, 69, 0.5);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

/* Service Detail Cards */
.service-detail-card {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 255, 248, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.service-detail-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-detail-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail-card p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 255, 248, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 46, 136, 0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--soft-accent) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(56, 255, 248, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 46, 136, 0.1);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-info-card h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    opacity: 0.8;
    margin: 0;
}

/* Legal Content */
.legal-content {
    background: rgba(44, 47, 69, 0.3);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.legal-content ul, 
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    margin: 3rem 0;
}

.process-step {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(56, 255, 248, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: var(--bg-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.process-step h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.process-step p {
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* FAQ Section */
.faq-item {
    background: rgba(44, 47, 69, 0.3);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(44, 47, 69, 0.5);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    display: none;
}

.faq-toggle {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease-out;
}

/* Testimonials */
.testimonial-card {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 255, 248, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    flex-grow: 1;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
}

.testimonial-author {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Sector specific styles */
.sector-card {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 255, 248, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.sector-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.sector-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sector-services {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.sector-services li {
    padding: 0.5rem 0;
    color: var(--text-color);
    opacity: 0.9;
    position: relative;
    padding-left: 1.5rem;
}

.sector-services li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Privacy and Legal specific */
.policy-section {
    margin-bottom: 3rem;
}

.policy-section h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.highlight-box {
    background: rgba(255, 46, 136, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
}

/* Quick Contact Cards */
.quick-contact-card {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(56, 255, 248, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.quick-contact-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.quick-contact-card:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.quick-contact-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.quick-contact-card p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 29, 46, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.map-overlay h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.map-overlay p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.map-overlay small {
    color: var(--text-color);
    opacity: 0.7;
}

/* Form Check Styling */
.form-check-input {
    background-color: var(--soft-accent);
    border: 1px solid rgba(56, 255, 248, 0.3);
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(56, 255, 248, 0.25);
}

.form-check-label {
    color: var(--text-color);
    opacity: 0.9;
}

.form-check-label a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-check-label a:hover {
    color: var(--secondary-color);
}

/* Fade animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .team-card {
        margin-bottom: 2rem;
    }
    
    .mission-card,
    .service-detail-card,
    .sector-card {
        margin-bottom: 2rem;
    }
    
    .process-step {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 1rem;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .navbar-nav {
        background-color: var(--primary-color);
        border-radius: 10px;
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        display: block;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background-color: var(--soft-accent);
    border: 1px solid rgba(56, 255, 248, 0.2);
    color: var(--text-color);
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(56, 255, 248, 0.25);
    color: var(--text-color);
}

.form-control::placeholder {
    color: rgba(236, 236, 236, 0.6);
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Page specific styles */
.page-header {
    background: linear-gradient(135deg, rgba(26, 29, 46, 0.9) 0%, rgba(44, 47, 69, 0.9) 100%), url('img/13.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 46, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(56, 255, 248, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background-color: var(--primary-color);
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate {
    opacity: 1;
}

.scroll-animate.fade-up {
    transform: translateY(30px);
}

.scroll-animate.fade-up.animate {
    transform: translateY(0);
}

.scroll-animate.fade-right {
    transform: translateX(-30px);
}

.scroll-animate.fade-right.animate {
    transform: translateX(0);
}

.scroll-animate.fade-left {
    transform: translateX(30px);
}

.scroll-animate.fade-left.animate {
    transform: translateX(0);
}

.scroll-animate.scale {
    transform: scale(0.9);
}

.scroll-animate.scale.animate {
    transform: scale(1);
}

.scroll-animate.slide-right {
    transform: translateX(-100%);
}

.scroll-animate.slide-right.animate {
    transform: translateX(0);
}

.scroll-animate.slide-left {
    transform: translateX(100%);
}

.scroll-animate.slide-left.animate {
    transform: translateX(0);
}

/* Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* News Card Styles */
.news-card {
    background: linear-gradient(135deg, var(--soft-accent) 0%, var(--primary-color) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 255, 248, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 46, 136, 0.2);
    border-color: var(--accent-color);
}

.news-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-card p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

/* Success Stories Section */
.success-stories {
    background-color: var(--primary-color);
}

/* Our Process Section */
.our-process {
    background-color: var(--primary-color);
}

/* Latest News Section */
.latest-news {
    background-color: var(--bg-color);
}

/* Add styles for row equal height */
.row {
    display: flex;
    flex-wrap: wrap;
}

.row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* Gallery Section Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 29, 46, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--text-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(26, 29, 46, 0.95), rgba(26, 29, 46, 0.7));
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--soft-accent) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--accent-color);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.cookie-content {
    text-align: center;
}

.cookie-content h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-buttons .btn {
    min-width: 120px;
}

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}

.navbar-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}