/* ============================================
   SHAKTI IT SERVICES - McKinsey-Inspired Design
   ============================================ */

/* CSS Custom Properties */
:root {
    --navy: #1a1a2e;
    --navy-light: #232342;
    --navy-dark: #12121f;
    --blue: #2251ff;
    --blue-light: #4a6fff;
    --blue-hover: #1a3fcc;
    --cyan: #00b4d8;
    --gray-bg: #ebebeb;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-body: #333333;
    --text-muted: #666666;
    --text-light: #999999;
    --border: #d4d4d4;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition: all 0.3s ease;
    --radius: 4px;
    --container: 1140px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--blue);
    animation: spin 1.2s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    border-top-color: var(--cyan);
    animation-duration: 0.8s;
    animation-direction: reverse;
}

.loader-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    white-space: nowrap;
    text-transform: uppercase;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: var(--navy);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.logo-accent {
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--blue);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(34, 81, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--text-dark);
    background: rgba(0, 0, 0, 0.02);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.6) 50%, rgba(26, 26, 46, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-welcome {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #ffffff;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-sans);
    border-radius: 4px;
    border: 1.5px solid rgba(255,255,255,0.5);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.btn-hero-ghost:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.08);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    display: inline-block;
}

.stat-suffix {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    display: inline-block;
}

.stat-desc {
    font-size: 1rem;
    color: var(--text-body);
    margin-top: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 120px;
    background: var(--border);
    flex-shrink: 0;
}

/* ============================================
   SECTION INTRO HEADERS
   ============================================ */
.section-intro {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 12px;
    margin-top: 12px;
}

.section-heading-light {
    color: #ffffff;
}

.section-subheading {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FEATURED INSIGHTS
   ============================================ */
.insights-section {
    padding: 20px 0 80px;
    background: var(--gray-light);
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}



.insight-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
}

.insight-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.insight-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insight-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.insight-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
}

.insight-title a {
    color: var(--text-dark);
}

.insight-title a:hover {
    color: var(--blue);
}

.insight-title .arrow {
    color: var(--blue);
    font-weight: 700;
    font-size: 1.2em;
}

.insight-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   SERVICES DARK SECTION
   ============================================ */
.services-dark {
    padding: 20px 0 80px;
    background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?w=3840&q=100&fit=crop');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Dark directional overlay — heavy on left (text), lighter on right (image shows through) */
.services-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(4, 13, 18, 0.97) 0%,
        rgba(6, 26, 33, 0.94) 30%,
        rgba(8, 40, 54, 0.82) 55%,
        rgba(8, 47, 62, 0.65) 100%
    );
    z-index: 0;
}

.services-dark .container {
    position: relative;
    z-index: 1;
}

.services-content {
    display: block;
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.services-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-text .section-label {
    text-align: center;
    margin-bottom: 24px;
}

.services-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    min-height: 360px;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 20px;
    color: #ffffff;
}

.services-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 28px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
}

.link-arrow:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

.link-arrow span {
    transition: transform 0.3s ease;
}

.link-arrow:hover span {
    transform: translateX(4px);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.service-item:hover {
    border-color: rgba(0, 180, 216, 0.35);
    background: rgba(0, 180, 216, 0.06);
}

.service-item i {
    font-size: 1.3rem;
    color: var(--cyan);
    margin-top: 2px;
    width: 24px;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.service-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 20px 0 80px;
    background: var(--white);
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 81, 255, 0.1) 0%, transparent 50%);
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    background: var(--white);
    padding: 32px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.metric-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--blue);
}

.metric-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   VISUAL BANNER
   ============================================ */
.visual-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.visual-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    max-width: 700px;
    line-height: 1.3;
}

/* ============================================
   TECHNOLOGIES SECTION
   ============================================ */
.tech-section {
    padding: 20px 0 80px;
    background: var(--gray-light);
    position: relative;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-section .section-label {
    color: var(--text-muted);
}

.tech-accordion {
    background: var(--white);
    border-radius: 8px;
    padding: 16px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tech-accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
}

.tech-accordion-col {
    /* column */
}

.tech-accordion-item {
    border-bottom: 1px solid #e8e8e8;
}

.tech-accordion-item:last-child {
    border-bottom: none;
}

.tech-accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.25s ease;
}

.tech-accordion-btn:hover {
    color: var(--blue);
}

.tech-accordion-btn i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.25s ease;
}

.tech-accordion-item.active .tech-accordion-btn i {
    transform: rotate(45deg);
    color: var(--blue);
}

.tech-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0;
}

.tech-accordion-item.active .tech-accordion-body {
    max-height: 120px;
    padding: 0 0 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gray-light);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all 0.25s ease;
}

.tech-tags span:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
}

/* ============================================
   CONNECT / CONTACT SECTION
   ============================================ */
.connect-section {
    padding: 20px 0 80px;
    background: var(--white);
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.connect-section .container {
    width: 100%;
    max-width: 1200px;
}

.connect-header {
    margin-bottom: 24px;
    text-align: center;
}

.connect-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.connect-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.92rem;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--gray-light);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form textarea {
    resize: vertical;
    min-height: 64px;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
}

.form-success-icon {
    font-size: 3rem;
    color: #22c55e;
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.form-error-msg {
    font-size: 0.9rem;
    color: #dc2626;
    margin-bottom: 12px;
    padding: 10px 14px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.contact-info-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-info-card .connect-item {
    margin-bottom: 20px;
}

.contact-info-card .connect-item:last-child {
    margin-bottom: 0;
}

.social-links-card {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.social-links-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.connect-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.connect-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.connect-item i {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.connect-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.connect-item a,
.connect-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.connect-item a:hover {
    color: var(--blue);
}

.connect-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 32px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    font-size: 1.1rem;
    color: var(--text-body);
    transition: background 0.2s, color 0.2s;
}

.social-link:hover {
    background: var(--blue);
    color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 48px 0 32px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
