/* Elektro-Progres - Main Stylesheet */

:root {
    --navy: #1a365d;
    --navy-light: #2c5282;
    --blue: #3498db;
    --blue-light: #5dade2;
    --blue-glow: #63b3ed;
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --gray-200: #e2e8f0;
    --gray-600: #718096;
    --gray-800: #2d3748;
    --gradient-blue: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    --shadow-sm: 0 1px 3px rgba(26,54,93,0.1);
    --shadow-md: 0 4px 20px rgba(26,54,93,0.15);
    --shadow-lg: 0 10px 40px rgba(26,54,93,0.2);
    --shadow-glow: 0 0 30px rgba(52,152,219,0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-blue);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    padding: 0.75rem 2rem;
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--navy);
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text span {
    color: var(--blue);
}

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

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid var(--gray-100);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--gray-800);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--blue);
    padding-left: 1.5rem;
}

.dropdown-menu a .icon {
    width: 20px;
    text-align: center;
}

.nav-cta {
    background: var(--gradient-blue);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white !important;
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding: 100px 2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

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

.mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--navy);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--gray-50);
    color: var(--blue);
}

.mobile-menu .mobile-cta {
    margin-top: 1rem;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
}

.mobile-menu .mobile-cta:hover {
    background: var(--navy);
}

.mobile-menu-services {
    padding-left: 1rem;
    border-left: 3px solid var(--blue-light);
    margin: 0.5rem 0 0.5rem 1rem;
}

.mobile-menu-services a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: var(--gradient-blue);
    transform: rotate(-15deg);
    opacity: 0.03;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(52,152,219,0.1);
    color: var(--blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: var(--gradient-blue);
    z-index: -1;
    opacity: 0.15;
}

/* Hero Image for location pages */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    background: var(--gradient-blue);
    z-index: -1;
    opacity: 0.15;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.stat-number span {
    color: var(--blue);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* Floating Elements */
.floating-icon {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: -20px;
    right: 40px;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    bottom: 40px;
    left: -30px;
    animation-delay: 1s;
}

.floating-icon svg {
    width: 32px;
    height: 32px;
    color: var(--blue);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@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);
    }
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(52,152,219,0.1);
    color: var(--blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: white;
}

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

.service-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Why Me Section */
.why-me {
    padding: 6rem 2rem;
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-me::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(52,152,219,0.1) 100%);
}

.why-me .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--blue-light);
}

.why-me .section-title {
    color: white;
}

.why-me .section-desc {
    color: rgba(255,255,255,0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(52,152,219,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue-light);
    font-size: 1.25rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

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

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-item-text strong {
    display: block;
    color: var(--navy);
    font-weight: 600;
}

.contact-item-text span {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.contact-item-text a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-item-text a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About/Gallery Section */
.about-section {
    padding: 6rem 2rem;
    background: white;
}

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

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

.about-photo {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about-photo:first-child {
    grid-column: span 2;
    max-height: 250px;
}

.about-photo:first-child img {
    object-position: center 20%;
}

.about-photo:not(:first-child) {
    max-height: 150px;
}

.about-photo:not(:first-child) img {
    object-position: center top;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-photo:hover {
    box-shadow: var(--shadow-lg);
}

.about-photo:hover img {
    transform: scale(1.05);
}

.about-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin: 1.5rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--gray-800);
    font-weight: 500;
}

.about-list li::before {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(52,152,219,0.1);
    color: var(--blue);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Social/Facebook Section */
.social-section {
    padding: 5rem 2rem;
    background: var(--gray-50);
}

.social-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.fb-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    min-width: 500px;
}

.social-info {
    max-width: 450px;
    text-align: center;
}

.social-info h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.social-info p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1877f2;
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 5rem 2rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52,152,219,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.trust-slogan {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.trust-slogan p {
    font-size: 1.5rem;
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.05);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
    border-color: var(--blue-light);
}

.trust-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-card h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.trust-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.trust-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.trust-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* SEO Content Section */
.seo-content {
    padding: 4rem 2rem;
    background: var(--gray-50);
}

.seo-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.seo-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin: 1.5rem 0 0.75rem;
}

.seo-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-content ul {
    color: var(--gray-600);
    margin: 1rem 0 1rem 1.5rem;
}

.seo-content li {
    margin-bottom: 0.5rem;
}

.seo-content details {
    margin-top: 1rem;
}

.seo-content summary {
    color: var(--blue);
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.seo-content summary:hover {
    color: var(--navy);
}

.seo-content summary::marker {
    content: '';
}

.seo-content summary::after {
    content: '';
    transition: transform 0.3s ease;
}

.seo-content details[open] summary::after {
    transform: rotate(90deg);
}

.seo-content details .details-content {
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 2px solid var(--blue-light);
}

/* Map Section for location pages */
.map-section {
    padding: 5rem 2rem;
    background: white;
}

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

.map-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.map-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.map-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.map-feature-icon {
    font-size: 1.5rem;
}

.map-feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52,152,219,0.15) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--navy);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.cta-phone:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 0.75rem 2rem;
    background: var(--gray-100);
    margin-top: 95px;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.5;
}

.breadcrumbs a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--navy);
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--gray-600);
}

.breadcrumbs span.separator,
.breadcrumbs-container > span:not(.breadcrumbs-current) {
    margin: 0 0.3rem;
}

.breadcrumbs-current {
    color: var(--gray-600);
    font-weight: 400;
}

/* Service Pages */
.service-hero {
    padding: 140px 2rem 80px;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.service-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-hero h1 span {
    color: var(--blue-light);
    font-weight: 600;
    font-size: 1.5rem;
}

.service-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-features {
    padding: 5rem 2rem;
    background: white;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-process {
    padding: 5rem 2rem;
    background: var(--gray-50);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gray-50);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--navy);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--blue);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Areas Section */
.areas-section {
    padding: 4rem 2rem;
    background: var(--gray-50);
}

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

.area-link {
    background: white;
    color: var(--navy);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.area-link:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

/* 404 Error Page */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-icon {
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin: 1rem 0;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-content h1 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.error-content > p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.error-suggestions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.error-suggestions h3 {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.suggestions-grid a {
    display: block;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.suggestions-grid a:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 600px) {
    .error-code {
        font-size: 5rem;
    }

    .error-content h1 {
        font-size: 1.5rem;
    }

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

/* Service Pages Responsive */
@media (max-width: 992px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 1.5rem 60px;
    }

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

    .service-hero h1 span {
        font-size: 1.2rem;
    }

    .service-hero-icon {
        font-size: 3rem;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-number {
        margin: 0 auto;
    }

    .faq-item summary {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 2.5rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-logo img {
    height: 50px;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo-text span {
    color: var(--blue-light);
}

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

.footer-contact a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-light);
}

/* SEO Cities Section in Footer */
/* Footer Services */
.seo-services {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.seo-services h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
}

.seo-services-grid li a,
.seo-services-grid li span {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.seo-services-grid li::after {
    content: '•';
    color: rgba(255,255,255,0.25);
    margin: 0 0.6rem;
    font-size: 0.7rem;
}

.seo-services-grid li:last-child::after {
    display: none;
}

.seo-services-grid li a:hover {
    color: var(--blue-light);
}

.seo-services-grid li span.current {
    color: var(--blue-light);
    font-weight: 600;
}

/* Footer Cities */
.seo-cities {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.seo-cities h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
}

.seo-cities-grid li a,
.seo-cities-grid li span {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
}

.seo-cities-grid li::after {
    content: '•';
    color: rgba(255,255,255,0.25);
    margin: 0 0.6rem;
    font-size: 0.7rem;
}

.seo-cities-grid li:last-child::after {
    display: none;
}

.seo-cities-grid li a:hover {
    color: var(--blue-light);
}

.seo-cities-grid li span.current {
    color: var(--blue-light);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--blue-light);
    text-decoration: none;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* RESPONSIVE           */
/* ==================== */

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fb-wrapper {
        min-width: auto;
        width: 100%;
    }

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

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

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

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

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

    .map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-features {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .floating-icon {
        display: none;
    }

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

    .footer-contact {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .breadcrumbs {
        padding: 0.5rem 1rem;
        margin-top: 100px;
    }

    .breadcrumbs-container {
        font-size: 0.78rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.25rem 1rem;
    }

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

    .seo-services,
    .seo-cities {
        padding-top: 1rem;
        margin-bottom: 1rem;
    }

    .seo-services-grid,
    .seo-cities-grid {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .trust-slogan p {
        font-size: 1.1rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .cta-phone {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }
}
