/* CSS Variables for Premium Design */
:root {
    --bg-dark: #0a0a0c;
    --bg-secondary: #121214;
    --accent-blue: #007aff;
    --accent-glow: rgba(0, 122, 255, 0.4);
    --text-primary: #ffffff;
    --text-muted: #a1a1a6;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --gradient-hero: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.9) 100%);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

.highlight {
    color: var(--accent-blue);
}

.dark-mode {
    background-size: cover;
    background-attachment: fixed;
}

/* Header Styling */
#main-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--card-border);
    transition: all 0.4s ease;
}

.header-transparent {
    background: transparent;
}

.header-scrolled {
    background: rgba(10, 10, 12, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 80px;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 40px;
}

.phone-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
}

.phone-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
    font-family: var(--font-heading);
}

.cta-button {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--accent-glow);
    background: #1a85ff;
}

.cta-button.large {
    padding: 20px 48px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease-out;
}

.hero-section:hover .hero-bg {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0a0a0c 30%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.3);
    border-radius: 4px;
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 40px;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    line-height: 0.95;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -3px;
    color: #fff;
}

p.hero-content {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 650px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
}

.primary-btn {
    background: white;
    color: black;
    border: none;
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
}

.primary-btn:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
}

.secondary-btn {
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 45px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
}

.stat-meta {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 700;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services-section {
    padding: 180px 0;
    background: var(--bg-dark);
}

.section-header {
    margin-bottom: 100px;
}

.sub-heading {
    display: block;
    color: var(--accent-blue);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 60px 50px;
    border-radius: 4px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}

.service-icon {
    font-size: 4rem;
    color: var(--accent-blue);
    margin-bottom: 40px;
}

.service-icon .material-symbols-outlined {
    font-size: 3.5rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.card-list {
    list-style: none;
    margin-top: auto;
}

.card-list li {
    padding-left: 20px;
    position: relative;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
}

.service-card.featured {
    border: 1px solid var(--accent-blue);
}

.featured-badge {
    position: absolute;
    top: 40px;
    right: -10px;
    background: var(--accent-blue);
    padding: 6px 15px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Process Section */
.process-section {
    padding: 150px 0;
    background: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 100px;
}

.step {
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    display: block;
}

.step:hover .step-num {
    -webkit-text-stroke: 1px var(--accent-blue);
    color: var(--accent-blue);
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Location Visual */
.location-visual {
    flex: 1;
}

.visual-card {
    background: #000;
    border-radius: 4px;
    height: 500px;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.visual-icon {
    font-size: 8rem !important;
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--accent-blue);
}

/* CTA Footer section */
.cta-footer-section {
    padding: 150px 0;
    background: var(--bg-dark);
}

.cta-box {
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    padding: 100px 80px;
    border-radius: 4px;
    text-align: center;
}

.cta-box h3 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 4px;
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: 0.3s;
}

.cta-form input:focus {
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.08);
}

.cta-form button {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

/* Footer Styling */
#main-footer {
    padding: 100px 0 60px;
    background: #050507;
    border-top: 1px solid var(--card-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.social-links {
    display: flex;
    gap: 40px;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal {
    font-size: 0.65rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
.fade-in-up { opacity: 0; animation: fadeInUp 1s ease-out forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 30px; }
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .cta-form { flex-direction: column; }
    h1 { font-size: 3.5rem; }
    .header-contact { gap: 20px; }
    .header-contact .cta-button { display: none; }
}
