:root {
    /* Color Palette derived from poster */
    --bg-dark: #000B1D; /* Very dark blue */
    --bg-blue: #041432; /* Dark blue */
    --primary: #0A58CA; /* Creative blue */
    --primary-light: #2A83FF;
    --accent-cyan: #00D4FF;
    --text-main: #FFFFFF;
    --text-muted: #A3B8CC;
    --card-bg: #FFFFFF;
    --card-text: #333333;
    
    /* Service Icon Colors */
    --icon-blue: #007BFF;
    --icon-teal: #20C997;
    --icon-pink: #E83E8C;
    --icon-orange: #FD7E14;
    --icon-purple: #6F42C1;
    --icon-green: #28A745;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.highlight {
    color: var(--primary-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 11, 29, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo CSS Art mimicking the poster */
.logo-icon {
    position: relative;
    width: 45px;
    height: 30px;
}

.loop {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 6px solid var(--accent-cyan);
}

.loop-1 {
    left: 0;
    border-color: var(--primary-light);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.loop-2 {
    right: 0;
    border-color: var(--text-main);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.logo-text strong {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: var(--transition);
}

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

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-primary {
    background: transparent;
    border: 2px solid var(--primary-light);
    color: var(--text-main);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 5px 15px rgba(42, 131, 255, 0.4);
    transform: translateY(-2px);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.glow-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42,131,255,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.glow-2 {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 450px;
}

/* CSS Mockups */
.hero-image {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.laptop {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 450px;
    height: 280px;
    background: #111;
    border-radius: 12px 12px 0 0;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.laptop:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.laptop .screen {
    background: var(--bg-blue);
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.laptop .base {
    position: absolute;
    bottom: -15px;
    left: -20px;
    right: -20px;
    height: 15px;
    background: #ccc;
    border-radius: 0 0 15px 15px;
    box-shadow: inset 0 -3px 5px rgba(0,0,0,0.2);
}

.laptop .base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #aaa;
    border-radius: 0 0 4px 4px;
}

.phone {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 150px;
    height: 300px;
    background: #222;
    border-radius: 20px;
    padding: 8px;
    box-shadow: -10px 20px 40px rgba(0,0,0,0.6);
    transform: perspective(1000px) rotateY(-20deg) rotateZ(-5deg);
    transition: transform 0.5s ease;
}

.phone:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateZ(0deg) translateY(-10px);
}

.phone .screen {
    background: var(--bg-dark);
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
}

/* Mockup Content Styling */
.screen-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(42,131,255,0.2), transparent);
}

.nav-mock {
    position: absolute;
    top: 10px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mock {
    width: 40px;
    height: 10px;
    background: var(--text-main);
    border-radius: 5px;
    opacity: 0.8;
}

.links-mock span {
    display: inline-block;
    width: 20px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    margin-left: 5px;
    border-radius: 2px;
}

.laptop h3 {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.phone h4 {
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.btn-mock {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid var(--primary-light);
    border-radius: 15px;
    font-size: 10px;
    width: fit-content;
}

/* Services Section */
.services {
    background-color: #F8F9FA;
    color: var(--card-text);
    padding: 100px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg-blue);
    margin-bottom: 15px;
}

.divider {
    height: 3px;
    width: 80px;
    background: var(--primary);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card:hover:nth-child(1) { border-color: var(--icon-blue); }
.service-card:hover:nth-child(2) { border-color: var(--icon-teal); }
.service-card:hover:nth-child(3) { border-color: var(--icon-pink); }
.service-card:hover:nth-child(4) { border-color: var(--icon-orange); }
.service-card:hover:nth-child(5) { border-color: var(--icon-purple); }
.service-card:hover:nth-child(6) { border-color: var(--icon-green); }

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.icon-wrapper.blue { background: rgba(0,123,255,0.1); color: var(--icon-blue); }
.icon-wrapper.teal { background: rgba(32,201,151,0.1); color: var(--icon-teal); }
.icon-wrapper.pink { background: rgba(232,62,140,0.1); color: var(--icon-pink); }
.icon-wrapper.orange { background: rgba(253,126,20,0.1); color: var(--icon-orange); }
.icon-wrapper.purple { background: rgba(111,66,193,0.1); color: var(--icon-purple); }
.icon-wrapper.green { background: rgba(40,167,69,0.1); color: var(--icon-green); }

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--bg-blue);
    text-transform: uppercase;
}

.service-card p {
    color: #666;
    font-size: 15px;
}

/* Features Banner */
.features {
    background: var(--bg-blue);
    padding: 60px 0;
    color: var(--text-main);
}

.features-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-icon {
    font-size: 32px;
    color: var(--accent-cyan);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-text span {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA Contact Section */
.cta {
    background: #FFFFFF;
    color: var(--card-text);
    padding: 80px 0;
}

.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F4F7FB;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 10px 20px rgba(10, 88, 202, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(10, 88, 202, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(10, 88, 202, 0); }
    100% { box-shadow: 0 0 0 0 rgba(10, 88, 202, 0); }
}

.contact-details .subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.phone-numbers-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.phone-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number {
    font-size: 36px;
    color: var(--bg-blue);
    line-height: 1;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.company-name {
    font-size: 18px;
    color: #666;
}

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

.cta-slogan h3 {
    font-size: 32px;
    color: var(--bg-blue);
    line-height: 1.2;
}

.handwriting {
    font-family: 'Inter', sans-serif; /* Fallback for handwriting */
    font-style: italic;
    color: var(--primary);
    font-weight: 400;
}

/* Footer */
footer {
    background: #E9ECEF;
    color: #6c757d;
    padding: 40px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    font-size: 14px;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content {
        margin-bottom: 60px;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-image {
        justify-content: center;
        height: 350px;
    }
    
    .laptop {
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .cta-contact {
        flex-direction: column;
    }
    
    .cta-slogan {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(0, 11, 29, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .phone-number {
        font-size: 36px;
    }
    
    .features-container {
        flex-direction: column;
        align-items: center;
    }
}
