/* 1. CORPORATE FONT REGISTRATION (STRICT ROOT-RELATIVE ABSOLUTE PATHS) */
@font-face {
    font-family: 'Montserrat';
    src: url('/Montserrat-Regular.ttf');
    src: url('/Montserrat-Regular.ttf?#iefix') format('embedded-opentype'),
         url('/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/Montserrat-Medium.ttf');
    src: url('/Montserrat-Medium.ttf?#iefix') format('embedded-opentype'),
         url('/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/Montserrat-Bold.ttf');
    src: url('/Montserrat-Bold.ttf?#iefix') format('embedded-opentype'),
         url('/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/Montserrat-ExtraBold.ttf');
    src: url('/Montserrat-ExtraBold.ttf?#iefix') format('embedded-opentype'),
         url('/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

/* 2. CORPORATE COLOR PALETTE (CONSISTENT WITH LOGO #1) */
:root {
    --brand-navy: #1d526b;    /* Primary professional navy blue */
    --brand-gold: #c5a349;    /* Corporate gold accent */
    --brand-sky: #7cc9f0;     /* Strategic sky-blue highlight */
    --ui-white: #ffffff;
    --ui-background: #f8fafd;
    --ui-transition: all 0.3s ease;
}

/* 3. CORE RESET AND GLOBAL LAYOUT SETTINGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--brand-navy);
    background-color: var(--ui-white);
    -webkit-font-smoothing: antialiased;
}

/* Centralized Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Media Asset Handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Professional Interaction States */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--ui-transition);
}

/* Typography Standards */
h1 {
    font-weight: 700;
    line-height: 1.2;
}
h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}


/* HEADER STRUCTURE */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--ui-white);
    transition: var(--ui-transition);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 5px;
}

.main-logo {
    height: 50px;
    width: auto;
}

/* --- NAVIGATION STYLES & ANIMATIONS --- */

/* Desktop Navigation List */
.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

/* Base Link Style */
.nav-link {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    color: var(--brand-navy);
    transition: var(--ui-transition);
}

/* Improved Animation: Underline (Pseudo-element) */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Professional easing */
}

/* Hover & Active States */
.nav-link:hover,
.nav-link.active {
    color: var(--brand-gold);
}

/* Underline expansion on hover and when active */
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Responsive Mobile Navigation Adjustments */
@media (max-width: 1024px) {
    .nav-list {
        flex-direction: column;
        padding: 40px 0;
        gap: 25px;
        align-items: center;
    }

    .nav-link {
        font-size: 16px; /* Slightly larger for touch targets */
    }

    /* Keep animation functional in mobile view */
    .nav-link::after {
        bottom: -5px;
    }
}

/* --- ACTION BUTTON EXCLUSION (To prevent underline on button) --- */
.action-trigger-btn::after {
    display: none !important;
}


/* DOT NAVIGATION (DESKTOP) */
.side-dot-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.dot-item {
    width: 10px;
    height: 10px;
    background-color: rgba(29, 82, 107, 0.2);
    border-radius: 50%;
    transition: var(--ui-transition);
}

.dot-item.active {
    background-color: var(--brand-gold);
    transform: scale(1.5);
}

/* MOBILE BURGER */
.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--brand-navy);
    transition: var(--ui-transition);
}

/* RESPONSIVE LOGIC */
@media (max-width: 1024px) {
    .side-dot-nav { display: none; }
    .burger-menu { display: flex; }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: var(--ui-white);
        transition: 0.4s;
        border-top: 1px solid #eee;
    }
    
    .main-navigation.active { left: 0; }
    
    .nav-list {
        flex-direction: column;
        padding: 40px 0;
        gap: 20px;
    }
}

/* --- PREMIUM ACTION BUTTON (HEADER) --- */

.action-trigger-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #256a8a 100%);
    color: var(--ui-white) !important;
    padding: 12px 28px !important;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1px solid rgba(197, 163, 73, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    margin-left: 15px;
    cursor: pointer;
}

/* Subtle shine effect on hover */
.action-trigger-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: all 0.6s;
}

/* Hover State Interactions */
.action-trigger-btn:hover {
    background: var(--brand-gold);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 163, 73, 0.4);
    border-color: var(--brand-gold);
}

.action-trigger-btn:hover::before {
    left: 100%;
}

/* Active State (Click) */
.action-trigger-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(197, 163, 73, 0.3);
}

/* Mobile Adaptation */
@media (max-width: 1024px) {
    .action-trigger-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 80%; /* Prominent button in mobile menu */
        text-align: center;
        padding: 15px 0 !important;
    }
}



/* --- HERO SECTION BASE --- */
.hero-section {
    padding: 180px 0 120px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT COLUMN TYPOGRAPHY */
.hero-content { flex: 1.2; z-index: 10; }

.company-badge {
    display: inline-block;
    background: var(--brand-sky);
    color: var(--brand-navy);
    padding: 5px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(124, 201, 240, 0.3);
}

.hero-features-list { list-style: none; margin-bottom: 50px; }

.hero-features-list li {
    font-size: 28px;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 17px;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

/* Sophisticated Diamond Marker */
.hero-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 12px;
    height: 12px;
    background-color: var(--brand-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 15px var(--brand-gold);
    animation: marker-pulse 2.5s infinite ease-in-out;
}

/* --- OPTIMIZED HERO BUTTON ANIMATION --- */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--ui-white);
    color: var(--brand-navy);
    padding: 18px 38px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    /* Faster transition for instant feedback */
    transition: all 0.2s ease-out; 
    border: 1px solid rgba(0,0,0,0.03);
    cursor: pointer;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    margin-left: 12px;
    /* Sharp arrow movement */
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btn-primary:hover {
    background-color: var(--brand-navy);
    color: var(--ui-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(29, 82, 107, 0.2);
}

/* Instant arrow dash on hover */
.hero-btn-primary:hover .arrow-icon {
    transform: translateX(10px);
}

/* Active click state for tactile feel */
.hero-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* RIGHT VISUAL & NEON TRIANGLE */
.hero-visual { flex: 1; position: relative; }

/* --- FINAL RE-ENGINEERED NEON SHAPE --- */

.neon-shape-wrapper {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -31%);
    width: 600px;
    height: 600px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.neon-triangle {
    width: 60%;
    height: 60%;
    position: relative;
    /* Rotation animation */
    animation: neon-rotate 15s infinite linear;
}

/* Creating a full closed shape with neon borders */
.neon-triangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Full border around the element */
    border: 2px solid var(--brand-navy);
    /* Soft corporate rounding for all corners */
    border-radius: 40px; 
    /* Shaping into an abstract triangle-diamond via scale and rotate */
    transform: rotate(45deg) skew(15deg, 15deg);
    
    /* Global glow and color shift */
    animation: neon-color-shift 8s infinite alternate ease-in-out;
    box-shadow: 0 0 20px rgba(124, 201, 240, 0.2);
}

/* Secondary layer for enhanced neon bloom effect */
.neon-triangle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--brand-navy);
    border-radius: 40px;
    transform: rotate(45deg) skew(15deg, 15deg);
    filter: blur(12px); /* Deep neon light dispersion */
    animation: neon-color-shift 8s infinite alternate ease-in-out;
    opacity: 0.5;
}

/* --- KEYFRAMES SYNC --- */

@keyframes neon-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes neon-color-shift {
    0% { 
        border-color: var(--brand-navy); 
        filter: drop-shadow(0 0 10px var(--brand-sky)); 
    }
    100% { 
        border-color: var(--brand-gold); 
        filter: drop-shadow(0 0 25px var(--brand-gold)); 
    }
}



@keyframes marker-pulse {
    0%, 100% { opacity: 1; transform: rotate(45deg) scale(1); }
    50% { opacity: 0.6; transform: rotate(45deg) scale(1.3); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-features-list li { font-size: 22px; justify-content: center; padding-left: 0; }
    .hero-features-list li::before { position: relative; margin-right: 20px; }
    .neon-triangle { width: 350px; height: 350px; }
}

.hero-visual {
    position: relative;
}
.neon-pers {
    display: block;
    position: absolute;
    right: 0;
    top: -255px;
    background: url(/p2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 500px;
    height: 587px;
}


/* --- ENHANCED STICKY HEADER LOGIC --- */

/* Scrolled state (triggered by JS) */
.site-header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98); /* Near solid white for readability */
    backdrop-filter: blur(10px); /* Modern frosted glass effect */
    box-shadow: 0 10px 30px rgba(29, 82, 107, 0.1); /* Strategic navy-tinted shadow */
    border-bottom: 1px solid rgba(197, 163, 73, 0.15); /* Subtle gold divider */
}

/* Smooth transition for the wrapper padding on scroll */
.header-scrolled .header-wrapper {
    padding: 12px 0; /* Compacting the header for better viewport space */
}

/* Ensuring the active nav-link underline remains sharp on scrolled header */
.header-scrolled .nav-link.active::after {
    height: 3px;
    background-color: var(--brand-gold);
}

/* Logo scaling for scrolled state to maintain professional balance */
.header-scrolled .main-logo {
    height: 42px; /* Slightly smaller to match compact header */
    transition: var(--ui-transition);
}


/* --- SECTION: ABOUT US (STRICT & CLEAN) --- */

.about-section {
    position: relative;
    padding: 160px 0;
    background-color: var(--ui-white);
    overflow: hidden;
}

/* 1. BACKGROUND DECORATION (SVG PATTERN) */
/* Placed absolutely to avoid layout shifts */
.about-section::before {
    content: '';
    position: absolute;
    top: -5%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: url('/pattern.svg') no-repeat center;
    background-size: contain;
    opacity: 0.05; /* Subtle watermark */
    transform: rotate(15deg);
    z-index: 1;
    pointer-events: none;
}

/* 2. VERTICAL ACCENT LINE */
.about-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 300px;
    background-color: var(--brand-gold);
    z-index: 2;
}

.about-section .container {
    position: relative;
    z-index: 10;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    /* Fixing the visibility issue from your screenshot */
    opacity: 0; 
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Class added by JS to trigger reveal */
.about-wrapper.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* LEFT COLUMN: IDENTITY */
.about-identity {
    flex: 1;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-navy);
    line-height: 1.1;
    margin-bottom: 40px;
}

.gold-text {
    color: var(--brand-gold);
}

.compliance-badge {
    display: inline-flex;
    flex-direction: column;
    border-left: 3px solid var(--brand-gold);
    padding-left: 20px;
    background: var(--ui-background);
    padding: 20px 25px;
}

.compliance-badge .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-sky);
    font-weight: 700;
    margin-bottom: 5px;
}

.compliance-badge .value {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-navy);
}

/* RIGHT COLUMN: PROFESSIONAL CONTENT */
.about-description {
    flex: 1.2;
}

.lead-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--brand-navy);
    line-height: 1.5;
    margin-bottom: 35px;
    border-left: 4px solid var(--brand-sky);
    padding-left: 25px;
}

.main-text {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.9;
    margin-bottom: 40px;
    text-align: justify;
}

.location-info {
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info::before {
    content: '●';
    color: var(--brand-gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-wrapper { flex-direction: column; gap: 50px; }
    .section-title { font-size: 34px; }
    .about-section::after { display: none; }
}


/* --- SERVICES SECTION STYLES --- */

.services-section {
    padding: 140px 0;
    background-color: var(--ui-background);
}

.services-header {
    max-width: 700px;
    margin-bottom: 70px;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    border-left: 2px solid var(--brand-sky);
    padding-left: 20px;
}

/* GRID LAYOUT */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD BASE STYLE */
.service-card {
    background-color: var(--ui-white);
    padding: 50px 40px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 4px; height: 0;
    background-color: var(--brand-gold);
    transition: var(--ui-transition);
}

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

.service-card:hover::before {
    height: 100%;
}

/* SERVICE CONTENT */
.service-num {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(29, 82, 107, 0.03); /* Subtle watermark effect */
    line-height: 1;
}

.service-icon-box {
    margin-bottom: 30px;
    color: var(--brand-gold);
}

.service-icon {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 20px;
    color: var(--brand-navy);
    margin-bottom: 20px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* IT SPECIAL CARD */
.it-special {
    grid-column: span 3; /* Full width emphasis */
    background-color: var(--brand-navy);
    color: var(--ui-white);
    border-left: 4px solid var(--brand-sky);
}

.it-special h3, .it-special p { color: var(--ui-white); }

.it-label {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--brand-sky);
    color: var(--brand-navy);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ANIMATION CLASSES */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .it-special { grid-column: span 2; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .it-special { grid-column: span 1; }
}


/* --- COMPLIANCE & CHAIN SCHEME --- */

.compliance-section {
    padding: 90px 0;
    background-color: var(--ui-white);
    background-image: url('/pattern.svg');
    background-size: 500px;
    background-position: left bottom;
    background-repeat: no-repeat;
}

.compliance-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-top: 20px;
}

/* CHAIN GRAPHIC LOGIC */
.chain-container {
    position: relative;
    padding: 40px 0;
}

.chain-line {
    position: absolute;
    top: 65px;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-gold) 50%, var(--brand-navy) 100%);
    opacity: 0.3;
    z-index: 1;
}

.chain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.chain-node {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--ui-white);
    border: 1px solid var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    margin-bottom: 25px;
    position: relative;
    transition: var(--ui-transition);
}

.node-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* PULSE ANIMATION */
.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--brand-gold);
    animation: chain-pulse 2.5s infinite;
}

.chain-node h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--brand-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chain-node p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    padding: 0 15px;
}

/* KEYFRAMES */
@keyframes chain-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Interaction */
.chain-node:hover .node-icon-box {
    background-color: var(--brand-navy);
    color: var(--ui-white);
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .chain-line { display: none; }
    .chain-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}


/* --- COMPLIANCE NARRATIVE TEXT --- */

.compliance-narrative {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-top: 40px;
    padding-top: 0;
}

.narrative-column {
    flex: 1;
}

.narrative-column p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: justify;
    margin: 0;
}

/* Accent for the first letter or first line to give it a "Report" look */
.narrative-column p::first-line {
    font-weight: 600;
    color: var(--brand-navy);
}

/* Mobile Adaptation */
@media (max-width: 1024px) {
    .compliance-narrative {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }
}



/* --- SECTION: INSIGHTS & SUPPORT (NEUTRAL CLASSES) --- */

.section-p-60 {
    padding: 100px 0;
    background-color: #f8fafd;
}

.dual-wrap {
    width: 100%;
}

/* Float-based layout for maximum WAF compatibility */
.col-left {
    width: 45%;
    float: left;
    margin-right: 5%;
}

.col-right {
    width: 50%;
    float: left;
}

.head-m-20 {
    font-size: 30px;
    color: #1d526b; /* Navy */
    margin-bottom: 40px;
}

/* PARTNER CARDS */
.card-v-item {
    display: none;
    background: #ffffff;
    padding: 40px;
    border-left: 4px solid #c5a349; /* Gold */
}

.card-v-item.active {
    display: block;
}

.txt-main {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.info-n { font-weight: 700; display: block; color: #1d526b; }
.info-g { font-size: 13px; color: #7cc9f0; }

.ctrl-btn {
    padding: 10px 20px;
    border: 1px solid #1d526b;
    background: transparent;
    cursor: pointer;
    margin-top: 20px;
}

/* SUPPORT UNITS (QUERIES) */
.q-unit {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 5px;
}

.q-trigger {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    display: block;
}

.q-content {
    padding: 0 20px 20px;
    display: none;
    color: #555555;
    font-size: 14px;
}

.q-unit.active .q-content {
    display: block;
}

/* Clearfix */
.dual-wrap::after {
    content: "";
    clear: both;
    display: table;
}

/* Responsive */
@media (max-width: 1024px) {
    .col-left, .col-right { width: 100%; float: none; margin-right: 0; }
}


/* --- SECTION: CORPORATE CONTACTS (#contact) --- */

.c-section {
    padding: 120px 0;
    background-color: #f5f5f5; /* Matching Hero background */
    position: relative;
    overflow: hidden;
}

.c-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 0px;
}

/* 1. LEFT COLUMN: REQUISITES */
.c-info-col {
    flex: 1.2;
    z-index: 10;
}

.c-badge {
    display: inline-block;
    background: var(--brand-sky);
    color: var(--brand-navy);
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.c-title {
    font-size: 48px;
    line-height: 1.1;
    color: var(--brand-navy);
    margin-bottom: 40px;
}

.c-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.c-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.c-icon {
    width: 26px;
    height: 26px;
    color: var(--brand-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.c-detail-item strong {
    display: block;
    font-size: 17px;
    color: var(--brand-navy);
    margin-bottom: 5px;
}

.c-detail-item span {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* 2. RIGHT COLUMN: VISUAL & SLOW IMPULSE */
.c-visual-col {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

.c-person-img {
    max-width: 100%;
    height: auto;
    z-index: 5;
    position: absolute;
    bottom: 0;
}

.c-pulse-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 163, 73, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.c-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid var(--brand-gold);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    /* Super slow professional motion */
    animation: contact-impulse-slow 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.c-wave:nth-child(2) {
    animation-delay: 5s;
}

@keyframes contact-impulse-slow {
    0% { width: 120%; height: 120%; opacity: 0; }
    40% { opacity: 0.3; }
    100% { width: 0%; height: 0%; opacity: 0.05; }
}

/* 3. INQUIRY FORM: GRID 3x3 */
.c-form-container {
    background: #ffffff;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    z-index: 20;
    position: relative;
}

.c-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.c-form-header h3 {
    font-size: 28px;
    color: var(--brand-navy);
    margin-bottom: 12px;
}

.c-form-header p {
    font-size: 15px;
    color: #666;
}

.c-form-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 30px;
}

.c-field input, 
.c-field select {
    display: block !important;
    width: 100% !important;
    padding: 18px !important;
    background-color: #fdfdfd !important;
    border: 1px solid #e5e5e5 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    color: var(--brand-navy) !important;
    border-radius: 4px;
    transition: var(--ui-transition);
}

.c-field input:focus, 
.c-field select:focus {
    border-color: var(--brand-gold) !important;
    background-color: #ffffff !important;
    outline: none;
    box-shadow: 0 5px 15px rgba(197, 163, 73, 0.1);
}

/* 4. FORM BOTTOM: POLICY & BUTTON */
.c-form-bottom {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-top: 35px;
    border-top: 1px solid #f0f0f0;
}

.c-policy-box {
    flex: 2;
}

.c-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    cursor: pointer;
    color: #555;
}

.policy-trigger-link {
    color: var(--brand-gold);
    font-weight: 700;
    text-decoration: underline;
}

.c-btn-box {
    flex: 1;
}

.c-btn-box .action-trigger-btn {
    width: 100% !important;
    padding: 20px !important;
    border: none !important;
    cursor: pointer;
}

/* 5. SUCCESS FEEDBACK UI */
.c-success-message {
    text-align: center;
    padding: 50px 0;
}

.c-success-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-gold);
    color: white;
    border-radius: 50%;
    line-height: 70px;
    font-size: 32px;
    margin: 0 auto 25px;
}

/* 6. RESPONSIVE ADAPTATION */
@media (max-width: 1024px) {
    .c-top-wrap { flex-direction: column; text-align: center; }
    .c-detail-item { text-align: left; }
    .c-visual-col { display: none; }
    .c-form-container { padding: 40px 25px; }
    .c-form-grid { grid-template-columns: 1fr !important; }
    .c-form-bottom { flex-direction: column; gap: 25px; }
    .c-btn-box { width: 100%; }
}



/* --- MODAL SYSTEM --- */
.m-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(29, 82, 107, 0.85); /* Navy transparent */
    backdrop-filter: blur(8px);
    z-index: 9999; /* Maximum Priority */
    display: none; /* Hidden by default */
    align-items: flex-end; /* Bottom alignment for sliding up */
    justify-content: center;
    transition: opacity 0.4s ease;
}

.m-overlay.active {
    display: flex;
}

.m-window {
    background-color: var(--ui-white);
    width: 100%;
    max-width: 1100px;
    height: 85%; /* Covers 85% of height */
    border-radius: 20px 20px 0 0;
    position: relative;
    padding: 60px 40px 40px;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.2);
    transform: translateY(100%); /* Start position for animation */
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.m-overlay.active .m-window {
    transform: translateY(0);
}

/* CONTENT & SCROLL */
.m-content {
    height: 100%;
    overflow-y: auto; /* Scroll if content overflows */
    padding-right: 15px;
}

/* Custom Scrollbar for a professional look */
.m-content::-webkit-scrollbar { width: 4px; }
.m-content::-webkit-scrollbar-track { background: #eee; }
.m-content::-webkit-scrollbar-thumb { background: var(--brand-gold); }

.m-title { font-size: 32px; color: var(--brand-navy); margin-bottom: 30px; }
.m-legal-text h3 { font-size: 18px; margin: 25px 0 10px; color: var(--brand-navy); }
.m-legal-text p { font-size: 15px; color: #555; margin-bottom: 15px; line-height: 1.7; }

/* ANIMATED CLOSE BUTTON */
.m-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    border: none; background: #f5f5f5;
    cursor: pointer; border-radius: 50%;
    transition: var(--ui-transition);
}

.m-close span {
    position: absolute;
    top: 19px; left: 10px;
    width: 20px; height: 2px;
    background-color: var(--brand-navy);
    transition: var(--ui-transition);
}

.m-close span:nth-child(1) { transform: rotate(45deg); }
.m-close span:nth-child(2) { transform: rotate(-45deg); }

.m-close:hover { background-color: var(--brand-gold); transform: rotate(90deg); }
.m-close:hover span { background-color: var(--ui-white); }


/* --- PRODUCT TRIGGER BUTTON (INSIDE IT BLOCK) --- */

.it-btn-container {
    margin-top: 35px;
    width: 100%;
}

.it-action-btn {
    display: block; /* Full width as requested */
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b38a2e 100%);
    color: #fff !important;
    padding: 18px 0 15px !important;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Premium shine effect (Sync with header button) */
.it-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: all 0.6s;
}

/* Hover State */
.it-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 163, 73, 0.4);
    background: var(--ui-white);
    color: var(--brand-navy) !important;
}

.it-action-btn:hover::before {
    left: 100%;
}

.it-action-btn:active {
    transform: translateY(-1px);
}


/* --- STRICT FOOTER ALIGNMENT --- */

.f-section {
    background-color: var(--brand-navy);
    color: var(--ui-white);
    padding: 80px 0 40px;
}

/* TOP AREA: Fixed horizontal alignment */
.f-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.f-identity {
    flex: 0 0 200px; /* Fixed width for logo area */
}

.f-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.f-mission {
    flex: 1; /* Takes all available central space */
    max-width: 650px; /* Prevents text from stretching too wide */
    margin: 0 auto;
}

.f-mission p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    text-align: center; /* Centered mission text */
}

.f-status {
    flex: 0 0 220px; /* Fixed width for registration info */
    text-align: right;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.f-nib { 
    display: block;
    color: var(--brand-gold); 
    margin-bottom: 5px;
}

/* BOTTOM AREA: Perfect row alignment */
.f-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-copyright {
    flex: 1;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.f-footer-nav {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.f-legal-group {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.f-footer-nav a, .f-legal-group a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--ui-transition);
}

.f-footer-nav a:hover, .f-legal-group a:hover {
    color: var(--brand-gold);
}

/* ADAPTIVE */
@media (max-width: 1024px) {
    .f-grid, .f-bottom-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    .f-identity, .f-status, .f-mission, .f-footer-nav, .f-legal-group {
        flex: none;
        width: 100%;
        text-align: center;
    }
    .f-legal-group { justify-content: center; }
}


/* Specific adjustment for form inside modal */
#modalInquiry .m-window {
    height: 90%; /* More space for the large form */
}

#modalInquiry .c-form-grid {
    padding-top: 20px;
}

@media (max-width: 1024px) {
    #modalInquiry .m-content {
        padding-bottom: 50px;
    }
    .neon-pers {
    display: block;
    position: absolute;
    right: -500px;
    left: unset;
    top: -406px;
    background: url(/p2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 381px;
    height: 590px;
    }
    .action-trigger-btn {
        margin-left: 0;
        margin-right: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        padding: 15px 19px !important;
    }
    .c-form-container {
        padding: 40px 25px;
        margin-top: 50px;
    }
    
}

@media (max-width: 500px) {
.company-badge {
    font-weight: 600;
    font-size: 15px;
}
.hero-features-list li {
    font-size: 16px;
}
.hero-section {
    padding: 120px 0 250px;
}   
.neon-pers {
        display: block;
        position: absolute;
        right: 0;
        left: 0;
        margin: auto;
        top: -130px;
        background: url(/p2.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        width: 300px;
        height: 400px;
}    
.m-title {
    font-size: 25px;
}   
.c-form-header h3 {
    font-size: 25px;
}    
.m-window {
    padding: 60px 15px 40px;
}
.section-title {
    font-size: 29px;
}
.lead-text {
    font-size: 18px;
    padding-left: 20px;
}
.compliance-badge {
    padding: 20px 25px 20px 20px;
}
.about-section {
    padding: 90px 0 75px;
}
.services-section {
    padding: 90px 0;
}
.head-m-20 {
    font-size: 29px;
}
.section-p-60 {
    padding: 80px 0;
}
.ctrl-btn {
    margin-bottom: 50px;
}
.c-section {
    padding: 85px 0;
}
.c-section .c-title {
    font-size: 33px;
    text-align: left;
}
.c-section .c-badge {
    text-align: left;
    display: block;
    margin: 0 0 20px 0;
    max-width: 210px;
}
.f-footer-nav {
    gap: 15px;
}


    
}
