/* ============================================================
   VIJAY VELAYUDHAN - Contract Management Consultant
   Main Stylesheet
   Premium Corporate Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --primary: #0a1628;
    --primary-light: #1a2940;
    --secondary: #0f1f33;
    --accent: #c9a84c;
    --accent-dark: #b8942e;
    --accent-light: #e0c86a;
    --text-light: #ffffff;
    --text-muted: #b0b8c5;
    --text-dark: #e8ecf1;
    --body-bg: #f8f9fc;
    --card-bg: #ffffff;
    --dark-card: #0f1f33;
    --gradient-1: linear-gradient(135deg, var(--primary) 0%, var(--primary-light, #1a2940) 50%, var(--primary) 100%);
    --gradient-2: linear-gradient(135deg, var(--accent) 0%, #b8942e 100%);
    --gradient-3: linear-gradient(135deg, var(--primary) 0%, #162a4a 100%);
    --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
    --shadow-md: 0 8px 30px rgba(10,22,40,0.12);
    --shadow-lg: 0 20px 60px rgba(10,22,40,0.15);
    --shadow-accent: 0 8px 30px rgba(201,168,76,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: var(--body-bg);
    overflow-x: hidden;
    line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1.3;
}
a { text-decoration: none; color: var(--accent); transition: var(--transition); }
a:hover { color: var(--accent-dark); }
::selection { background: var(--accent); color: var(--primary); }

/* ===== PAGE REVEAL TRANSITION ===== */
#page-reveal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary); z-index: 99999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 1; visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}
#page-reveal.revealed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.reveal-brand {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    opacity: 1; transition: opacity 0.4s;
}
#page-reveal.revealed .reveal-brand { opacity: 0; }
.reveal-logo {
    width: 80px; height: 80px; border-radius: 50%;
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    position: relative; display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 800; color: var(--primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    box-shadow: 0 0 40px rgba(201,168,76,0.2);
}
.reveal-logo::after {
    content: 'V';
}
.reveal-name {
    font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
    color: var(--text-light); letter-spacing: 2px;
}
.reveal-name span {
    color: var(--accent); display: block; text-align: center;
    font-size: 14px; font-weight: 400; letter-spacing: 4px; text-transform: uppercase;
    margin-top: 2px;
}
.reveal-line {
    width: 0; height: 2px;
    background: var(--gradient-2); margin-top: 20px; border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.77, 0, 0.18, 1) 0.2s;
}
#page-reveal.revealed .reveal-line { width: 0 !important; }
#page-reveal:not(.revealed) .reveal-line { width: 120px; }

@keyframes revealBar { from { width: 0; } to { width: 120px; } }

/* ===== NAVBAR ===== */
.navbar-main {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 15px 0;
    transition: var(--transition);
    background: var(--navbar-scrolled-bg, rgba(10,22,40,0.98));
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-main.scrolled {
    padding: 8px 0;
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700; font-size: 20px;
    color: var(--text-light) !important;
    display: flex; align-items: center; gap: 10px;
}
.navbar-brand .brand-accent { color: var(--accent); }
.navbar-logo { height: 55px; width: auto; display: block; }
.header-logo { height: 28px; width: auto; display: block; }
.navbar-brand .brand-text { display: inline-block; line-height: 1.2; }
.navbar-brand .brand-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.navbar-brand .brand-subtitle {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-top: 1px;
}
.nav-link {
    color: var(--nav-link-color, rgba(255,255,255,0.8)) !important;
    font-size: 14px; font-weight: 500;
    padding: 8px 18px !important;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%;
    width: 0; height: 2px; background: var(--accent);
    transition: var(--transition); transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active { color: var(--nav-link-active-color, var(--accent)) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.hamburger { width: 28px; height: 20px; position: relative; cursor: pointer; }
.hamburger span {
    display: block; width: 100%; height: 2px; background: var(--accent);
    position: absolute; transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

/* ===== HEADER RIGHT BRAND ===== */
.header-brand-right {
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.15);
    margin-left: 20px;
    flex-shrink: 0;
}
@media (max-width: 991px) {
    .header-brand-right { display: none; }
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative; min-height: 100vh;
    background: var(--gradient-1);
    display: flex; align-items: center;
    overflow: hidden; padding-top: 80px;
}
.hero-section.has-bg-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.hero-section.has-bg-image .hero-overlay-grid,
.hero-section.has-bg-image .hero-bg-shapes {
    display: none;
}
.hero-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.hero-overlay-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-bg-shapes {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-bg-shapes .shape {
    position: absolute; border-radius: 50%;
    background: rgba(201,168,76,0.05);
}
.hero-bg-shapes .shape-1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.hero-bg-shapes .shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.hero-bg-shapes .shape-3 { width: 200px; height: 200px; top: 30%; left: 10%; }

.hero-content { position: relative; z-index: 2; padding: 60px 0; }
.hero-badge {
    display: inline-block; padding: 8px 24px;
    background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50px; color: #f0d878; font-size: 13px;
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 20px; text-shadow: 0 0 20px rgba(201,168,76,0.3);
}
.hero-title {
    color: #ffffff; font-size: 52px; font-weight: 800;
    margin-bottom: 10px; line-height: 1.2;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    white-space: nowrap;
}
.hero-title .gold { color: #f5d97a; text-shadow: 0 0 30px rgba(245,217,122,0.4); }
.hero-subtitle {
    color: #e8ecf1; font-size: 18px;
    margin-bottom: 20px; font-weight: 400;
    text-shadow: 0 1px 15px rgba(0,0,0,0.2);
}
.hero-typing-wrapper {
    font-size: 22px; color: #f5d97a; font-weight: 600;
    margin-bottom: 30px; min-height: 40px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 25px rgba(245,217,122,0.3);
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-gold {
    background: linear-gradient(135deg, #f5d97a 0%, #e8c84a 100%); color: #0a1628;
    padding: 14px 36px; border-radius: 50px; font-weight: 700;
    border: none; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 15px; box-shadow: 0 4px 25px rgba(245,217,122,0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(245,217,122,0.5); color: #0a1628; }
.btn-outline-gold {
    background: transparent; color: #f5d97a;
    padding: 14px 36px; border-radius: 50px; font-weight: 600;
    border: 2px solid #f5d97a; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 10px; font-size: 15px;
    text-shadow: 0 0 10px rgba(245,217,122,0.2);
}
.btn-outline-gold:hover { background: #f5d97a; color: #0a1628; transform: translateY(-3px); box-shadow: 0 8px 40px rgba(245,217,122,0.4); }
.btn-outline-light {
    background: rgba(255,255,255,0.1); color: #ffffff;
    padding: 14px 36px; border-radius: 50px; font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4); transition: var(--transition);
    display: inline-flex; align-items: center; gap: 10px; font-size: 15px;
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.2); color: #ffffff; border-color: rgba(255,255,255,0.7); transform: translateY(-3px); }

.hero-profile-img {
    width: 380px; height: 380px; border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 0 60px rgba(201,168,76,0.2);
    position: relative; z-index: 2;
}
.hero-img-glow {
    position: absolute; width: 400px; height: 400px;
    border-radius: 50%; border: 2px solid rgba(201,168,76,0.15);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center; margin-bottom: 60px;
}
.section-badge {
    display: inline-block; padding: 5px 16px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50px; color: var(--accent-dark);
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 15px;
}
.section-title {
    font-size: 42px; font-weight: 700; color: var(--primary);
    margin-bottom: 15px;
}
.section-subtitle {
    color: #6b7a8f; font-size: 17px; max-width: 600px;
    margin: 0 auto; font-weight: 300;
}
.section-title .gold { color: var(--accent); }
.section-line {
    width: 60px; height: 3px; background: var(--gradient-2);
    margin: 20px auto 0; border-radius: 2px;
}

/* ===== SECTION DARK ===== */
.section-dark {
    background: var(--gradient-1);
}
.section-dark .section-title { color: var(--text-light); }
.section-dark .section-badge { background: rgba(201,168,76,0.15); }
.section-dark .section-subtitle { color: var(--text-muted); }

/* ===== ABOUT PREVIEW ===== */
.about-section { padding: 100px 0; }
.about-image-wrapper {
    position: relative; display: inline-block;
}
.about-image-wrapper img {
    border-radius: var(--radius-lg); width: 100%;
    box-shadow: var(--shadow-lg);
}
.about-exp-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gradient-2); color: var(--primary);
    padding: 20px; border-radius: var(--radius);
    text-align: center; min-width: 120px;
    box-shadow: var(--shadow-accent);
}
.about-exp-badge .number { font-size: 32px; font-weight: 800; display: block; line-height: 1; }
.about-exp-badge .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-highlights {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 25px;
}
.about-highlight-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 15px; background: rgba(201,168,76,0.06);
    border-radius: 8px; border-left: 3px solid var(--accent);
    font-size: 14px; font-weight: 500; color: var(--primary);
}
.about-highlight-item i { color: var(--accent); font-size: 16px; }

/* ===== EXPERTISE CARDS ===== */
.expertise-section { padding: 100px 0; }
.expertise-card {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 35px 25px; text-align: center;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%; position: relative; overflow: hidden;
}
.expertise-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-2); transform: scaleX(0);
    transform-origin: left; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.expertise-card:hover::before { transform: scaleX(1); }
.expertise-card:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-lg);
}
.expertise-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; transition: var(--transition);
}
.expertise-card:hover .expertise-icon {
    background: var(--gradient-2);
}
.expertise-icon i { font-size: 28px; color: var(--accent); transition: var(--transition); }
.expertise-card:hover .expertise-icon i { color: var(--primary); }
.expertise-card h5 { font-size: 18px; margin-bottom: 10px; }
.expertise-card p { font-size: 14px; color: #6b7a8f; margin-bottom: 0; }

/* ===== SECTOR CARDS ===== */
.sectors-section { padding: 100px 0; }
.sector-card {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; height: 280px;
    box-shadow: var(--shadow-md); transition: var(--transition);
    cursor: pointer;
}
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sector-bg {
    position: absolute; inset: 0;
    background: var(--gradient-3);
    transition: var(--transition);
}
.sector-card:hover .sector-bg { transform: scale(1.05); }
.sector-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,0.9) 100%);
}
.sector-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px; z-index: 2;
}
.sector-icon {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(201,168,76,0.2); border: 2px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
}
.sector-icon i { font-size: 20px; color: var(--accent); }
.sector-content h5 { color: var(--text-light); font-size: 20px; margin-bottom: 6px; }
.sector-content p { color: var(--text-muted); font-size: 13px; margin-bottom: 0; }

/* ===== WHY CHOOSE ME ===== */
.whychoose-section { padding: 100px 0; }
.whychoose-card {
    display: flex; gap: 18px; padding: 25px;
    background: var(--card-bg); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04); height: 100%;
}
.whychoose-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.whychoose-icon {
    width: 55px; height: 55px; min-width: 55px;
    border-radius: 12px; background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
}
.whychoose-icon i { font-size: 22px; color: var(--accent); }
.whychoose-card h6 { font-size: 16px; margin-bottom: 6px; }
.whychoose-card p { font-size: 13px; color: #6b7a8f; margin-bottom: 0; }

/* ===== COUNTERS ===== */
.counters-section {
    padding: 80px 0;
    background: var(--gradient-1);
    position: relative;
}
.counters-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.counter-item { text-align: center; position: relative; z-index: 2; padding: 20px; }
.counter-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(201,168,76,0.15); border: 2px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
}
.counter-icon i { font-size: 24px; color: var(--accent); }
.counter-number {
    font-size: 42px; font-weight: 800; color: var(--text-light);
    font-family: 'Playfair Display', serif;
}
.counter-number .suffix { color: var(--accent); }
.counter-label { color: var(--text-muted); font-size: 14px; font-weight: 500; margin-top: 5px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--body-bg); }
.testimonial-card {
    background: var(--card-bg); border-radius: var(--radius-lg);
    padding: 40px 30px; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    margin: 15px; height: auto;
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--accent); margin-bottom: 15px; }
.testimonial-stars i { margin-right: 2px; }
.testimonial-content {
    font-size: 15px; color: #555; line-height: 1.8;
    font-style: italic; margin-bottom: 20px;
    min-height: 80px;
}
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar {
    width: 55px; height: 55px; border-radius: 50%;
    background: var(--gradient-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700; color: var(--primary);
}
.testimonial-name { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 2px; }
.testimonial-company { font-size: 12px; color: var(--accent-dark); font-weight: 500; }

/* Swiper customization */
.swiper-pagination-bullet { background: var(--accent) !important; }
.swiper-pagination-bullet-active { background: var(--accent) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--accent) !important; }

/* ===== CONTACT CTA ===== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-1);
    position: relative; overflow: hidden;
    text-align: center;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.cta-title { color: var(--text-light); font-size: 42px; margin-bottom: 15px; }
.cta-text { color: var(--text-muted); font-size: 18px; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== SERVICES PAGE ===== */
.page-hero {
    padding: 280px 0 140px;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: var(--gradient-1);
    position: relative; overflow: hidden;
    text-align: center;
}
.page-hero h1 { color: var(--text-light); font-size: 48px; }
.page-hero p { color: var(--text-muted); font-size: 18px; max-width: 600px; margin: 15px auto 0; }
.page-hero.has-bg-image {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.page-hero.has-bg-image .container { position: relative; z-index: 2; }

.service-card {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 30px; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%; transition: var(--transition);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: var(--gradient-2); transform: scaleY(0);
    transform-origin: top; transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.service-icon {
    width: 55px; height: 55px; border-radius: 12px;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.service-icon i { font-size: 24px; color: var(--accent); }
.service-card h5 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #6b7a8f; margin-bottom: 0; }

/* ===== TIMELINE ===== */
.timeline-section { padding: 80px 0; position: relative; }
.timeline {
    position: relative; padding: 20px 0;
}
.timeline::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--accent), rgba(201,168,76,0.1));
    transform: translateX(-50%);
}
.timeline-item {
    position: relative; margin-bottom: 40px;
    width: 100%;
}
.timeline-dot {
    position: absolute; left: 50%; top: 30px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent); border: 4px solid var(--primary-light);
    transform: translateX(-50%); z-index: 2;
    box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.timeline-content {
    width: 44%; padding: 25px;
    background: var(--card-bg); border-radius: var(--radius);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.04);
    position: relative; transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.timeline-item:nth-child(odd) .timeline-content { float: left; }
.timeline-item:nth-child(even) .timeline-content { float: right; }
.timeline-item::after { content: ''; display: table; clear: both; }
.timeline-date {
    font-size: 12px; color: var(--accent-dark); font-weight: 600;
    letter-spacing: 1px; margin-bottom: 8px;
}
.timeline-company { font-size: 18px; font-weight: 700; color: var(--primary); }
.timeline-position { font-size: 14px; color: var(--accent-dark); font-weight: 500; margin-bottom: 8px; }
.timeline-desc { font-size: 13px; color: #6b7a8f; line-height: 1.7; }

/* ===== ARBITRATION PAGE ===== */
.arb-expertise-card {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 30px; text-align: center;
    border: 1px solid rgba(201,168,76,0.15);
    transition: var(--transition); height: 100%;
}
.arb-expertise-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.arb-expertise-card .icon {
    width: 65px; height: 65px; border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
}
.arb-expertise-card .icon i { font-size: 26px; color: var(--accent); }
.arb-expertise-card h5 { font-size: 17px; margin-bottom: 10px; }
.arb-expertise-card p { font-size: 13px; color: #6b7a8f; }

.process-section { padding: 80px 0; }
.process-step {
    display: flex; gap: 25px; margin-bottom: 30px;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: ''; position: absolute; left: 25px; top: 60px;
    bottom: -30px; width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(201,168,76,0.1));
}
.process-number {
    width: 52px; height: 52px; min-width: 52px;
    border-radius: 50%; background: var(--gradient-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; color: var(--primary);
    position: relative; z-index: 2;
}
.process-content { padding-top: 8px; }
.process-content h5 { font-size: 18px; margin-bottom: 6px; }
.process-content p { font-size: 14px; color: #6b7a8f; }

.trust-card {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 30px; text-align: center;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    height: 100%; border: 1px solid rgba(0,0,0,0.04);
}
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.trust-card .icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 15px;
}
.trust-card .icon i { font-size: 24px; color: var(--accent); }
.trust-card h5 { font-size: 16px; margin-bottom: 8px; }
.trust-card p { font-size: 13px; color: #6b7a8f; margin-bottom: 0; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 100px 0; }
.contact-info-card {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 25px; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex; align-items: center; gap: 18px;
    transition: var(--transition); margin-bottom: 20px;
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-info-icon {
    width: 50px; height: 50px; min-width: 50px;
    border-radius: 12px; background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
}
.contact-info-icon i { font-size: 20px; color: var(--accent); }
.contact-info-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-info-value { font-size: 15px; font-weight: 600; color: var(--primary); }

.contact-form-wrapper {
    background: var(--card-bg); border-radius: var(--radius-lg);
    padding: 40px; box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.04);
}
.form-control, .form-select {
    border: 2px solid #e8ecf1; border-radius: 10px;
    padding: 12px 16px; font-size: 14px;
    transition: var(--transition); font-family: 'Inter', sans-serif;
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent); box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: #aaa; }
.form-label { font-weight: 600; font-size: 13px; color: var(--primary); margin-bottom: 6px; }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
.footer {
    background: var(--primary); color: var(--text-muted);
    padding: 60px 0 30px;
}
.footer h5 { color: var(--text-light); font-size: 18px; margin-bottom: 20px; }
.footer p { font-size: 14px; line-height: 1.8; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    font-size: 16px;
}
.footer-social a:hover { border-color: currentColor; opacity: 0.85; }
.footer-social a .fa-linkedin-in { color: #0077B5; }
.footer-social a .fa-whatsapp { color: #25D366; }
.footer-social a .fa-twitter { color: #1DA1F2; }
.footer-social a .fa-facebook-f { color: #1877F2; }
.footer-social a .fa-instagram { color: #E4405F; }
.footer-social a .fa-youtube { color: #FF0000; }
.footer-social a .fa-telegram-plane { color: #0088CC; }
.footer-social a .fa-github { color: #ffffff; }
.footer-social a .fa-envelope { color: #EA4335; }
.footer-social a .fa-globe { color: #8896a8; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px; margin-top: 40px;
    text-align: center; font-size: 13px;
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    z-index: 999; width: 60px; height: 60px;
    border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; background: #20bd5a; }
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.6); }
}

/* ===== SOCIAL FLOAT (LEFT SIDE) ===== */
.social-float {
    position: fixed; left: 15px; top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex; flex-direction: column; gap: 10px;
}
.social-float-item {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 22px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
    text-decoration: none;
}
.social-float-item[aria-label="LinkedIn"] { background: #0077B5; }
.social-float-item[aria-label="WhatsApp"] { background: #25D366; }
.social-float-item[aria-label*="Twitter"] { background: #1DA1F2; }
.social-float-item[aria-label="Facebook"] { background: #1877F2; }
.social-float-item[aria-label="Instagram"] { background: #E4405F; }
.social-float-item[aria-label="YouTube"] { background: #FF0000; }
.social-float-item[aria-label="Telegram"] { background: #0088CC; }
.social-float-item[aria-label="GitHub"] { background: #333; }
.social-float-item[aria-label="Email"] { background: #EA4335; }
.social-float-item[aria-label="Website"] { background: #555; }
.social-float-item:hover { transform: scale(1.1); color: white; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed; bottom: 95px; right: 25px;
    z-index: 999; width: 45px; height: 45px;
    border-radius: 50%; background: var(--gradient-2);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 18px;
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: var(--transition); box-shadow: var(--shadow-accent);
    border: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero-title { font-size: 42px; }
    .hero-profile-img { width: 300px; height: 300px; }
}
@media (max-width: 991px) {
    .hero-section { text-align: center; padding-top: 100px; }
    .hero-title { font-size: 36px; white-space: normal; }
    .hero-buttons { justify-content: center; }
    .hero-profile-img { width: 250px; height: 250px; margin-top: 40px; }
    .timeline::before { left: 30px; }
    .timeline-content { width: calc(100% - 60px); float: right !important; margin-left: 60px; }
    .timeline-dot { left: 30px; }
    .section-title { font-size: 32px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 28px; }
    .hero-subtitle { font-size: 16px; }
    .hero-typing-wrapper { font-size: 18px; }
    .hero-profile-img { width: 200px; height: 200px; }
    .section-title { font-size: 28px; }
    .about-highlights { grid-template-columns: 1fr; }
    .counter-number { font-size: 32px; }
    .page-hero { padding: 200px 0 80px; min-height: 380px; }
    .page-hero h1 { font-size: 32px; }
    .cta-title { font-size: 30px; }
    .contact-form-wrapper { padding: 25px; }
    .timeline-content { padding: 18px; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 24px; }
    .hero-buttons .btn-gold, .hero-buttons .btn-outline-gold, .hero-buttons .btn-outline-light { font-size: 13px; padding: 12px 24px; }
    .section-title { font-size: 24px; }
}
