/* -----------------------------------------------------------
   ROOT VARIABLES & RESET
----------------------------------------------------------- */
:root {
    /* Brand Colors extracted from Logo/Card */
    --primary-color: #0a1e36;    /* Dark Navy */
    --secondary-color: #00a8e8;  /* Cyan/Sky Blue */
    --accent-color: #9bc53d;     /* Lime Green */
    
    /* Neutrals */
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.1);
    
    /* Spacing & Layout */
    --header-height: 70px;
    --border-radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* -----------------------------------------------------------
   COMPONENTS
----------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    font-weight: bold;
}

.text-accent {
    color: var(--secondary-color);
}

.text-gradient {
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.line {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-top: 10px;
}

.line.mx-auto {
    margin: 10px auto 0;
}

/* -----------------------------------------------------------
   NAVBAR
----------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 30, 54, 0.95); /* Dark Navy transparent */
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #f0fbff, #ffffff);
    overflow: hidden;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(155, 197, 61, 0.2); /* Light Lime */
    color: #6b8a2a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.2;
    z-index: 0;
}

.glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: 250px;
}

.icon-float {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* -----------------------------------------------------------
   ABOUT SECTION
----------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.stats {
    margin-top: 30px;
    display: flex;
    gap: 30px;
}

.stats li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats i {
    font-size: 2rem;
    color: var(--accent-color);
}

.stats strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.stats span {
    font-size: 0.9rem;
    color: var(--light-text);
}

.image-box {
    background: var(--off-white);
    height: 400px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--secondary-color);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 168, 232, 0.15);
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-box:hover .ceo-image {
    transform: scale(1.05);
}

.big-icon {
    font-size: 5rem;
    color: #ddd;
}

/* -----------------------------------------------------------
   SERVICES SECTION
----------------------------------------------------------- */
.services-bg {
    background-color: #f8fbff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: 0.3s;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 232, 0.1); /* Light Blue BG */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.icon-green {
    background: rgba(155, 197, 61, 0.1);
}

.icon-green i {
    color: var(--accent-color);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--light-text);
}

/* -----------------------------------------------------------
   WHY CHOOSE US & CTA
----------------------------------------------------------- */
.why-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary-color), #0096c7);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.3);
}

.cta-box h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* -----------------------------------------------------------
   CONTACT SECTION
----------------------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    padding: 40px;
    background: var(--primary-color);
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
}

.contact-info > p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.phones {
    display: flex;
    flex-direction: column;
}

.socials {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.socials a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.contact-form {
    padding: 40px;
}

/* -----------------------------------------------------------
   GALLERY
----------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.gallery-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 12px;
    text-align: left;
}

.gallery-card h4 {
    margin-top: 10px;
    font-size: 1rem;
    color: var(--primary-color);
}

.image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.image-pair img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    display: block;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active { display: flex; }

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: calc(100% - 40px);
    background: rgba(255,255,255,0.98);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.lightbox-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lightbox-images img {
    width: 100%;
    height: 60vh;
    object-fit: contain;
    background: #f6f6f6;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    right: 12px;
    top: 8px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .image-pair img { height: 110px; }
    .lightbox-images { grid-template-columns: 1fr; }
    .lightbox-images img { height: 50vh; }
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--secondary-color);
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
footer {
    background: #05101c;
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 3px solid var(--accent-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1.2rem;
}

.rc-num {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* -----------------------------------------------------------
   ANIMATIONS
----------------------------------------------------------- */
@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* -----------------------------------------------------------
   RESPONSIVE (MOBILE)
----------------------------------------------------------- */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, #0f2851 100%);
        width: 100%;
        text-align: center;
        padding: 40px 20px;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        gap: 0;
        backdrop-filter: blur(10px);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.5s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu .nav-item:nth-child(5) { transition-delay: 0.3s; }

    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.4s; }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
    }

    .nav-link:hover {
        color: var(--accent-color);
        transform: scale(1.05);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 80px;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        transition: all 0.4s ease;
    }

    .bar {
        width: 28px;
        height: 3px;
        margin: 3px 0;
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        background: linear-gradient(90deg, var(--white), var(--accent-color));
        border-radius: 2px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .hamburger.active {
        transform: rotate(90deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        height: 300px;
        margin-top: 30px;
    }

    .about-grid, .why-grid, .contact-wrapper, .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .cta-box {
        align-items: center;
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .socials {
        justify-content: center;
    }
}
