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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0f0f0f;
    word-break: break-word;
}

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

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

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

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

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

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

a:hover {
    color: #61d4ff;
}

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

.btn-primary {
    background-color: #3dc0fc;
    color: #0f0f0f;
}

.btn-primary:hover {
    background-color: #61d4ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 192, 252, 0.3);
}

.btn-secondary {
    background-color: #2a2a2a;
    color: #e0e0e0;
    border: 2px solid #3dc0fc;
}

.btn-secondary:hover {
    background-color: #3dc0fc;
    color: #0f0f0f;
}

.btn-outline {
    background-color: transparent;
    color: #3dc0fc;
    border: 2px solid #3dc0fc;
}

.btn-outline:hover {
    background-color: #3dc0fc;
    color: #0f0f0f;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(61, 192, 252, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3dc0fc;
}

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

.nav-pages {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

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

.nav-link:hover,
.nav-link.active {
    color: #3dc0fc;
    background-color: rgba(61, 192, 252, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

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

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

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

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

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3dc0fc, #61d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
    line-height: 1.6;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #3dc0fc;
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background-color: #1a1a1a;
}

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

.section-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: block;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
}

.section-header h2 {
    color: #3dc0fc;
    margin-bottom: 1rem;
}

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

/* Grids */
.about-grid,
.services-grid,
.achievements-grid,
.reviews-grid,
.values-grid,
.team-grid,
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

/* Cards */
.about-card,
.service-card,
.achievement-card,
.review-card,
.value-card,
.team-card,
.cert-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.about-card:hover,
.service-card:hover,
.achievement-card:hover,
.review-card:hover,
.value-card:hover,
.team-card:hover,
.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 192, 252, 0.1);
    border-color: #3dc0fc;
}

.card-icon,
.service-icon,
.value-icon,
.cert-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: block;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
    border: 3px solid #3dc0fc;
}

.team-role {
    color: #3dc0fc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-contact {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Advantages */
.advantage-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3dc0fc;
}

.advantage-number {
    background-color: #3dc0fc;
    color: #0f0f0f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Achievement Numbers */
.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3dc0fc;
    margin-bottom: 1rem;
}

/* Reviews */
.review-rating {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(61, 192, 252, 0.2);
    padding-top: 1rem;
}

.review-author strong {
    color: #3dc0fc;
    display: block;
    margin-bottom: 0.5rem;
}

.review-author span {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    background-color: #3dc0fc;
    color: #0f0f0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form {
    background-color: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.contact-form h3 {
    color: #3dc0fc;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background-color: #1a1a1a;
    border: 2px solid #3a3a3a;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3dc0fc;
    box-shadow: 0 0 0 3px rgba(61, 192, 252, 0.1);
}

.form-group input:invalid,
.form-group textarea:invalid,
.form-group select:invalid {
    border-color: #ff4757;
}

.error-message {
    color: #ff4757;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-note {
    color: #b0b0b0;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
}

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.radio-custom,
.checkbox-custom {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #3a3a3a;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.checkbox-custom {
    border-radius: 4px;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    display: none;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #3dc0fc;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: #3dc0fc;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

/* Contact Page Specific */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-detailed {
    display: flex;
    flex-direction: column;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.contact-icon-large {
    font-size: 2rem;
    width: 80px;
    height: 80px;
    background-color: #3dc0fc;
    color: #0f0f0f;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-note {
    color: #3dc0fc;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-form-detailed {
    background-color: #2a2a2a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

/* Services Page */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.service-content h2 {
    color: #3dc0fc;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
}

.service-pricing {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3dc0fc;
    margin-top: 2rem;
}

.service-pricing h3 {
    color: #3dc0fc;
    margin-bottom: 0.5rem;
}

.service-pricing p {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.city-group {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.city-group h3 {
    color: #3dc0fc;
    margin-bottom: 1.5rem;
}

.city-group ul {
    list-style: none;
    padding: 0;
}

.city-group li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(61, 192, 252, 0.1);
}

.city-group li:last-child {
    border-bottom: none;
}

.service-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.step-number {
    background-color: #3dc0fc;
    color: #0f0f0f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #3dc0fc;
    margin-bottom: 1rem;
}

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

.package-card {
    background-color: #2a2a2a;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(61, 192, 252, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    border-color: #3dc0fc;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 192, 252, 0.2);
}

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

.package-badge {
    background-color: #3dc0fc;
    color: #0f0f0f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 0.875rem;
}

.package-card h3 {
    color: #3dc0fc;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

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

.package-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    text-align: left;
}

.package-save {
    color: #3dc0fc;
    font-weight: 600;
    margin-bottom: 0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text {
    order: 1;
}

.content-image {
    order: 2;
}

.feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: block;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Location Info */
.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.location-details,
.office-features {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.directions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.direction-item {
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #3dc0fc;
}

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

.office-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
}

/* Nationwide Service */
.nationwide-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.service-promise {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.service-areas-compact {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

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

.area-item {
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    text-align: center;
    color: #b0b0b0;
}

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

.faq-item {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.faq-item h3 {
    color: #3dc0fc;
    margin-bottom: 1rem;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

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

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: block;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.thanks-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.step-icon {
    background-color: #3dc0fc;
    color: #0f0f0f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h3 {
    color: #3dc0fc;
    margin-bottom: 0.5rem;
}

.thanks-info {
    margin: 3rem 0;
}

.info-box {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.info-box h3 {
    color: #3dc0fc;
    text-align: center;
    margin-bottom: 1.5rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

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

.info-box li::before {
    content: '→';
    color: #3dc0fc;
    position: absolute;
    left: 0;
}

.thanks-contact {
    margin: 3rem 0;
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.thanks-contact h3 {
    color: #3dc0fc;
    margin-bottom: 1rem;
}

.emergency-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thanks-actions {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.resource-card {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(61, 192, 252, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 192, 252, 0.1);
}

.resource-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
}

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

.resource-link:hover {
    color: #61d4ff;
}

/* Testimonial */
.testimonial-highlight {
    background-color: #2a2a2a;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(61, 192, 252, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: block;
    filter: invert(1) sepia(1) saturate(1) hue-rotate(180deg) brightness(0.8);
}

.testimonial-highlight blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-highlight cite {
    color: #3dc0fc;
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-intro {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #3dc0fc;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(61, 192, 252, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #3dc0fc;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

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

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

.contact-info {
    background-color: #2a2a2a;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #3dc0fc;
}

/* Cookie Categories */
.cookie-category {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.cookie-category h3 {
    color: #3dc0fc;
    margin-bottom: 1rem;
}

/* Cookie Table */
.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    color: #3dc0fc;
    margin-bottom: 1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(61, 192, 252, 0.1);
}

.cookie-table th {
    background-color: #3dc0fc;
    color: #0f0f0f;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Browser Instructions */
.browser-instructions {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(61, 192, 252, 0.1);
}

.browser-instructions h4 {
    color: #3dc0fc;
    margin-bottom: 0.5rem;
}

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

/* Cookie Settings Section */
.cookie-settings-section {
    background-color: #2a2a2a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(61, 192, 252, 0.1);
    margin: 2rem 0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(61, 192, 252, 0.1);
}

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

.footer-section h3 {
    color: #3dc0fc;
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3dc0fc;
}

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

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

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

.footer-section a:hover {
    color: #3dc0fc;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #3dc0fc;
    color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: #61d4ff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 192, 252, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

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

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #3dc0fc;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.4;
}

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

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: #2a2a2a;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(61, 192, 252, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(61, 192, 252, 0.1);
}

.cookie-modal-header h2 {
    color: #3dc0fc;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(61, 192, 252, 0.1);
    color: #3dc0fc;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(61, 192, 252, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #3dc0fc;
}

.cookie-toggle label {
    color: #e0e0e0;
    font-weight: 600;
    cursor: pointer;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid rgba(61, 192, 252, 0.1);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-grid,
    .contact-page-grid,
    .content-grid,
    .location-info,
    .nationwide-service {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-text {
        order: 2;
    }
    
    .content-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-pages {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(61, 192, 252, 0.3);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-footer {
        justify-content: center;
    }
    
    .thanks-details {
        gap: 1.5rem;
    }
    
    .thanks-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-text {
        text-align: center;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .about-grid,
    .services-grid,
    .achievements-grid,
    .reviews-grid,
    .values-grid,
    .team-grid,
    .certifications-grid,
    .advantages-grid, .packages-grid, .process-steps, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-form-detailed {
        padding: 1.5rem;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .legal-content {
        font-size: 0.9rem;
    }
    
    .cookie-table {
        font-size: 0.8rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    
    .thanks-icon {
        width: 80px;
        height: 80px;
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
