:root {
    /* Color Palette */
    --clr-dark: #070d17;
    --clr-dark-lighter: #0f1c30;
    --clr-accent: #ff6d00;
    --clr-accent-hover: #e66200;
    --clr-blue: #00b4d8;
    --clr-text: #f0f4f8;
    --clr-text-muted: #a0aec0;
    
    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --section-pad: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-dark);
    color: var(--clr-text);
    overflow-x: hidden;
    cursor: none; /* Custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--clr-accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 109, 0, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor-hover .cursor {
    width: 0;
    height: 0;
}

.cursor-hover .cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 109, 0, 0.1);
    border-color: var(--clr-accent);
    backdrop-filter: blur(2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    background-color: rgba(7, 13, 23, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--clr-blue);
}

.logo-sub {
    font-size: 0.8rem;
    color: var(--clr-accent);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding: 10px;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--clr-accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,13,23,0.9) 0%, rgba(7,13,23,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--clr-accent);
    background: linear-gradient(to right, var(--clr-accent), var(--clr-blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(45deg, var(--clr-accent), var(--clr-accent-hover));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, var(--clr-blue), #0077b6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.cta-btn:hover::before {
    opacity: 1;
}

/* Services Section */
.services {
    padding: var(--section-pad);
    background-color: var(--clr-dark);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.service-card {
    transform-style: preserve-3d;
    height: 100%;
}

.card-inner {
    background: var(--clr-dark-lighter);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-inner:hover {
    border-color: rgba(255, 109, 0, 0.3);
}

.card-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.card-img-wrapper img {
    width: 100%;
    height: 120%; /* for parallax effect */
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 30px;
    transform: translateZ(30px);
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--clr-blue);
}

.card-content p {
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* Location Section */
.location {
    padding: var(--section-pad);
    background-color: #050a12;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-info .subtitle {
    color: var(--clr-accent);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-list i {
    font-size: 1.5rem;
    color: var(--clr-blue);
    background: rgba(0, 180, 216, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.contact-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-list span, .contact-list a {
    color: var(--clr-text-muted);
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--clr-accent);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Footer */
footer {
    background-color: var(--clr-dark-lighter);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}

.social-links a:hover {
    background: var(--clr-accent);
    color: white;
}

/* Advantages Section */
.advantages {
    padding: var(--section-pad);
    background-color: var(--clr-dark);
    position: relative;
}

.advantages-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.advantages-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.advantages-header .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--clr-accent);
    background: linear-gradient(to right, var(--clr-accent), var(--clr-blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.advantages-header p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.advantage-card {
    transform-style: preserve-3d;
}

.advantage-card .card-inner {
    background: var(--clr-dark-lighter);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s, transform 0.3s;
    height: 100%;
}

.advantage-card .card-inner:hover {
    border-color: rgba(0, 180, 216, 0.4);
}

.advantage-icon {
    font-size: 3rem;
    color: var(--clr-blue);
    margin-bottom: 20px;
    transform: translateZ(40px);
    display: inline-block;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--clr-text);
    transform: translateZ(30px);
}

.advantage-card p {
    color: var(--clr-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    transform: translateZ(20px);
}

/* Budget Section */
.budget-section {
    padding: var(--section-pad);
    background-color: var(--clr-dark-lighter);
}

.budget-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.budget-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    height: 500px;
    position: relative;
}

.budget-video video {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
}

.budget-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,13,23,0.8) 0%, rgba(7,13,23,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.budget-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.budget-text .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--clr-accent);
    background: linear-gradient(to right, var(--clr-accent), var(--clr-blue));
    -webkit-background-clip: text;
    background-clip: text;
}

.budget-text p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Animations Utility Classes */
.image-mask {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.char {
    transform: translateY(115%);
    transition: transform .5s;
}

/* Responsive */
@media (max-width: 900px) {
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none; /* Simple mobile nav could be added */
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}
