/* ===================================
   TABLE OF CONTENTS
   Global Styles
   Header & Navigation
   Hero
   Footer
   Media Queries
   =================================== */

/* ===================================
   1. GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Text Me One', sans-serif;
    color: white;
    overflow-x: hidden;
    background: #000;
}

/* ===================================
   2. HEADER & NAVIGATION
   =================================== */

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 5%;
    position: relative;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #1f3b4d 0%, #2d4f62 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand img {
    height: 150px;
    width: auto;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 32px;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 450px;
    height: 100vh;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 30px 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 10px;
    transition: background 0.3s ease;
    font-size: 1.1rem;
}

.sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}




/* --- Hero Section --- */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: white;
}


/* --- Contact Info Section --- */
.contact-info {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    filter: brightness(0) saturate(100%) invert(68%) sepia(48%) saturate(582%) hue-rotate(125deg) brightness(95%) contrast(87%);
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    color: #2ec4b6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #25a89d;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        padding: 60px 20px;
    }
}



/* --- Contact Info Section --- */
.contact-info {
    padding: 80px 20px;
    background-color: #fafafa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.contact-card {
    padding: 20px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    filter: brightness(0) saturate(100%) invert(68%) sepia(48%) saturate(582%) hue-rotate(125deg) brightness(95%) contrast(87%);
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    color: #2ec4b6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #25a89d;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding: 60px 20px;
    }
}


/* --- Contact Form Section --- */
.contact-form-section {
    padding: 80px 20px;
    background: #fafafa;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.form-content h2 {
    font-size: 2rem;
    color: #2ec4b6;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    color: #1d1b1b;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    background-color: #f9f9f900;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #f0f0f000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    align-self: flex-start;
    padding: 12px 40px;
    background-color: #2ec4b6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #25a89d;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 968px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 20px;
    }
    
    .form-content h2 {
        font-size: 1.5rem;
    }
}


/* ===================================
   6. FOOTER
   =================================== */
.main-footer {
    background: linear-gradient(135deg, #2c4a5e 0%, #3a5a70 100%);
    color: white;
    padding: 60px 5% 30px;
    font-family: 'Text Me One', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    padding-bottom: 40px;
}

/* Footer Left */
.footer-left {
    flex: 1;
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-office {
    font-size: 1.1rem;
    font-weight: 300;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Center */
.footer-center {
    flex: 1;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
    padding-left: 10px;
}

/* Footer Right */
.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.social-icons img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

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

/* ===================================
   7. MEDIA QUERIES
   =================================== */

/* Tablet & Mobile - 968px */
@media (max-width: 968px) {
    /* About Hero */
    .about-hero {
        min-height: auto;
    }

    .about-split-container {
        flex-direction: column;
        min-height: auto;
    }

    .about-left,
    .about-right {
        width: 100%;
    }

    .about-left {
        min-height: 40vh;
    }

    .about-title-overlay h1 {
        font-size: 3rem;
    }

    .about-right {
        padding: 60px 40px;
        min-height: auto;
    }

    .about-text-content p {
        font-size: 1.1rem;
    }

    /* Vision/Mission */
    .vision-mission-section {
        min-height: auto;
    }

    .vision-split-container {
        flex-direction: column;
        min-height: auto;
    }

    .vision-left,
    .vision-right {
        width: 100%;
    }

    .vision-left {
        padding: 60px 40px;
        min-height: auto;
    }

    .vision-right {
        min-height: 40vh;
        padding: 40px;
    }

    .vision-right img {
        width: 80%;
        height: auto;
        max-width: 400px;
        object-fit: contain;
    }

    .vision-text-content h2 {
        font-size: 1.6rem;
    }

    .vision-text-content li {
        font-size: 1rem;
    }

    /* Value Proposition */
    .value-proposition-section {
        padding: 60px 10%;
    }

    .value-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .value-card {
        max-width: 400px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .footer-logo {
        height: 50px;
        margin-bottom: 15px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* Navigation */
    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    /* Header */
    .main-header {
        padding: 20px 5%;
    }



    /* Footer */
    .main-footer {
        padding: 40px 5% 20px;
    }

    .footer-logo {
        height: 35px;
        margin-bottom: 15px;
    }

    .footer-office,
    .footer-nav a {
        font-size: 0.95rem;
    }

    .footer-heading {
        font-size: 1.3rem;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
    }

    .social-icons img {
        width: 28px;
        height: 28px;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2ec4b6 0%, #25a89d 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(46, 196, 182, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(-45deg);
    margin-top: 5px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top::before {
        width: 10px;
        height: 10px;
        border-width: 2.5px;
    }
}