/* 
 * style.css
 * Core styling for Info Pluto Media Works Pvt. Ltd.
 * Premium, minimal design language inspired by Apple, Stripe, Linear, Vercel.
 */

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F6F6F6;
    --text-primary: #111111;
    --text-muted: #5A5A5A;
    --border-color: #E8E8E8;
    
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    --max-width: 1300px;
    --section-spacing: 100px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Premium Low-Poly geometric background (Stripe/Apple style) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/poly_bg.png');
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: -2;
    pointer-events: none;
    opacity: 0.95;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.25;
    color: var(--text-primary);
}

p {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.section-secondary {
    background-color: rgba(246, 246, 246, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.grid {
    display: grid;
    gap: 30px;
}

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

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 17, 17, 0.08);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Sticky Glass Navbar */
.navbar {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 80px);
    max-width: var(--max-width);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    background-color: var(--bg-secondary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.navbar.scrolled {
    top: 12px;
    height: 65px;
    background-color: rgba(246, 246, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Cross Light Effect */
.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg);
    z-index: 1;
    pointer-events: none;
    animation: crossLight 5s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes crossLight {
    0% {
        left: -150%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.nav-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 62px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-image {
    height: 48px;
}

.hero-logo-container {
    margin-bottom: -95px !important;
}

.hero-logo-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.1));
    margin-top: -95px;
    transition: var(--transition-smooth);
}

.hero-logo-img:hover {
    transform: scale(1.03);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

.hero-section {
    padding: 110px 0 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-centered .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-muted);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-title span {
    display: inline-block;
    border-right: 2.5px solid var(--text-primary);
    padding-right: 4px;
    animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {
    from, to { border-color: transparent }
    50% { border-color: var(--text-primary); }
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Glow Card & Mockup styles */
.hero-glow-card {
    position: relative;
    width: 100%;
    height: 420px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.12;
    pointer-events: none;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background-color: #5A5A5A;
    top: -50px;
    left: -50px;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background-color: #111111;
    bottom: -60px;
    right: -60px;
    animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

.glass-mockup {
    width: 75%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    z-index: 2;
    animation: cardFloat 6s ease-in-out infinite;
}

.mockup-line {
    height: 8px;
    background-color: var(--border-color);
    border-radius: 4px;
    margin-bottom: 12px;
}

.mockup-line.long {
    width: 100%;
}

.mockup-line:last-child {
    margin-bottom: 0;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.15); opacity: 0.16; }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Who We Are Section */
.whoweare-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.whoweare-visual {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 4/3;
    position: relative;
}

.whoweare-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 70%);
    pointer-events: none;
}

.whoweare-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.05));
    animation: imageFloat 6s ease-in-out infinite;
}

.whoweare-content h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
}

.whoweare-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Verticals Section (Translucent Dark Frosted Glass Overlay) */
#verticals {
    background-color: rgba(30, 32, 34, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
}

#verticals .section-title {
    color: #FFFFFF;
}

#verticals .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

#verticals .hero-badge {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.verticals-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.vertical-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Border animation on hover */
.vertical-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--text-primary);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: scale(1.02);
    transition: var(--transition-smooth);
    pointer-events: none;
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.vertical-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.vertical-title-only {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.vertical-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #26292B;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.vertical-card:hover .vertical-icon-badge {
    background-color: #111111;
    transform: scale(1.08);
}

.vertical-card:hover .vertical-more i {
    transform: translateX(4px);
}

/* New Verticals Page Styles matching the exact layout */
.verticals-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.vertical-card-new {
    background: #FFFFFF;
    padding: 35px 30px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.vertical-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #CBD5E1;
}

.vertical-icon-badge-round {
    width: 100%;
    max-width: 240px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    overflow: hidden;
}

.vertical-icon-badge-round img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.vertical-card-new .learn-more-link {
    text-decoration: none;
    font-weight: 700;
    color: #0066CC;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.vertical-card-new:hover .learn-more-link {
    gap: 12px;
}

.vertical-card-wide {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #FFFFFF;
    padding: 35px 40px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    max-width: 750px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.vertical-card-wide:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #CBD5E1;
}

.vertical-card-wide .learn-more-link {
    text-decoration: none;
    font-weight: 700;
    color: #0066CC;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.vertical-card-wide:hover .learn-more-link {
    gap: 12px;
}

/* Media Query for Mobile responsiveness on new Verticals layout */
@media (max-width: 1024px) {
    .verticals-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .verticals-grid-4 {
        grid-template-columns: 1fr;
    }
    .vertical-card-wide {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
    }
    .vertical-icon-badge-round {
        margin-bottom: 10px;
    }
}

/* What We Do Section */
.whatwedo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.whatwedo-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.whatwedo-card:hover {
    border-color: var(--text-primary);
    background-color: var(--bg-secondary);
}

.whatwedo-icon {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.whatwedo-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.whatwedo-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Flagship Product: IndieMa.in */
.flagship-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 80px;
    position: relative;
}

.flagship-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.flagship-visual {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
    aspect-ratio: 16/10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Mockup elements for IndieMa.in social feed */
.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.mockup-logo {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    color: #111111;
}

.mockup-logo span {
    color: var(--text-muted);
    font-weight: 400;
}

.mockup-dots {
    display: flex;
    gap: 5px;
}

.mockup-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.mockup-body {
    flex-grow: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-post {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px;
    background: var(--bg-primary);
}

.mockup-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.mockup-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.mockup-username {
    font-size: 0.75rem;
    font-weight: 700;
}

.mockup-text-line {
    height: 6px;
    background-color: var(--bg-secondary);
    border-radius: 3px;
    margin-bottom: 6px;
    width: 100%;
}

.mockup-text-line.short {
    width: 60%;
}

.mockup-footer {
    display: flex;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    justify-content: space-around;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.flagship-content h3 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.flagship-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.15;
}

.flagship-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-primary);
}

.why-counter {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.why-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* CTA Section */
.cta-wrapper {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.cta-wrapper h2 {
    color: var(--bg-primary);
    font-size: 3.2rem;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.15;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-wrapper .btn-primary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--bg-primary);
}

.cta-wrapper .btn-primary:hover {
    background-color: transparent;
    color: var(--bg-primary);
}

.cta-wrapper .btn-secondary {
    color: var(--bg-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-wrapper .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--bg-primary);
}

/* Footer Styles */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-about .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-socials a:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--text-primary);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* Page: About Hero & Content */
.page-hero {
    padding: 110px 0 60px 0;
    text-align: center;
}

.page-hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.page-hero-desc {
    font-size: 1.3rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.vision-mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card, .mission-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
    height: 100%;
}

.about-card-icon {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Timeline/Journey Style */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 3px solid var(--text-primary);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    background-color: var(--text-primary);
    transform: scale(1.2);
}

.timeline-year {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Page: Contact Elements */
.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.contact-card-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-card-details p, .contact-card-details a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-map-placeholder {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-form-container p {
    font-size: 0.95rem;
    margin-bottom: 35px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-control {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--bg-primary);
}

.form-control:focus {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.05);
}

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

.form-status {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: none;
}

.form-status.success {
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #C4EAD3;
    display: block;
}

.form-status.error {
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
    display: block;
}

/* Animations Elements & Intersection Observer classes */
.reveal {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.fade-up {
    transform: translateY(60px);
}

.reveal.fade-left {
    transform: translateX(60px);
}

.reveal.fade-right {
    transform: translateX(-60px);
}

.reveal.zoom-in {
    transform: scale(0.92);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Image float animation keyframe */
@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Scroll Down Bouncing Arrow Animation */
.scroll-down-indicator {
    margin-top: 15px;
    text-align: center;
}

.scroll-down-indicator a {
    color: var(--text-muted);
    font-size: 1.6rem;
    transition: var(--transition-smooth);
    display: inline-block;
    animation: scrollIndicatorBounce 2.2s infinite;
}

.scroll-down-indicator a:hover {
    color: var(--text-primary) !important;
}

@keyframes scrollIndicatorBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}
