/* ========================================
   NURHEARTS INTERNATIONAL - CORPORATE WEBSITE
   Modern, Professional Design
   ======================================== */

/* ==========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================== */
:root {
    /* Primary Color Palette - Deep Blue & Gold (Corporate & Elegant) */
    --primary-dark: #0a1628;
    --primary-main: #1a365d;
    --primary-light: #2c5282;
    --primary-lighter: #4299e1;

    /* Accent Colors - Gold/Champagne (Excellence & Prestige) */
    --accent-gold: #c9a227;
    --accent-gold-light: #d4af37;
    --accent-gold-dark: #a68523;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #e2e8f0;
    --medium-gray: #94a3b8;
    --dark-gray: #475569;
    --near-black: #0f172a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 50%, var(--primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 50%, var(--accent-gold-light) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Header Height */
    --header-height: 90px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--near-black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================
   HEADER STYLES
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--header-height);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

/* Subtle shadow on scroll */
.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

/* ==========================================
   LOGO SECTION (Logo Only - Clean)
   ========================================== */
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform var(--transition-spring), opacity var(--transition-base);
}

.logo-link:hover {
    transform: scale(1.03);
    opacity: 0.95;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: filter var(--transition-base);
}

.logo-link:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.25));
}

/* ==========================================
   NAVIGATION STYLES (Clean & Professional)
   ========================================== */
.main-nav {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: var(--space-3) var(--space-4);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

/* Underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link.active {
    color: var(--accent-gold);
}

/* ==========================================
   TAGLINE SECTION (Elegant & Modern)
   ========================================== */
.tagline-section {
    flex-shrink: 0;
    text-align: right;
    padding-left: var(--space-4);
    border-left: 1px solid var(--light-gray);
}

.tagline-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin: 0;
}

.tagline-main {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
    opacity: 0;
    animation: taglineFadeIn 0.6s ease forwards 0.3s;
}

.tagline-accent {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
    opacity: 0;
    animation: taglineFadeIn 0.6s ease forwards 0.5s, taglineGlow 3s ease-in-out infinite 1.5s;
}

@keyframes taglineFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes taglineGlow {

    0%,
    100% {
        text-shadow: none;
    }

    50% {
        text-shadow: 0 0 15px rgba(201, 162, 39, 0.4);
    }
}

/* ==========================================
   MOBILE MENU TOGGLE
   ========================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: var(--space-2);
    gap: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   FOOTER STYLES (Modern Corporate)
   ========================================== */
.footer {
    position: relative;
    background: #F8F6F0;
    color: var(--near-black);
    padding: 0;
    overflow: hidden;
}

/* Wave Decoration */
.footer-wave {
    width: 100%;
    line-height: 0;
    color: #F8F6F0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-12) var(--space-6) var(--space-6);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-10);
    padding-bottom: var(--space-12);
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

/* Brand Column */
.footer-brand {
    gap: var(--space-4);
}

.footer-logo-link {
    display: inline-block;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.footer-logo-link:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.footer-logo {
    height: 55px;
    width: auto;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-gold);
    font-size: var(--text-base);
    line-height: 1.4;
}

.footer-description {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.7;
    max-width: 300px;
    text-align: justify;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--primary-dark);
    transition: all var(--transition-base);
    border: 1px solid var(--light-gray);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
    border-color: var(--accent-gold);
}

/* Navigation Links */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-nav li a {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-nav li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width var(--transition-base);
}

.footer-nav li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-nav li a:hover::before {
    width: 12px;
}

/* Contact Items */
.footer-contact {
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--accent-gold);
    margin-top: 2px;
}

.contact-item a {
    color: var(--dark-gray);
    transition: color var(--transition-base);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding-top: var(--space-6);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.copyright {
    font-size: var(--text-sm);
    color: var(--dark-gray);
}

.copyright strong {
    color: var(--primary-dark);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.footer-legal a {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-legal .separator {
    color: var(--medium-gray);
}

/* ==========================================
   MAIN CONTENT
   ========================================== */
.main-content {
    padding-top: var(--header-height);
}

/* ==========================================
   SHARED SECTION STYLES
   ========================================== */
.section-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    color: var(--accent-gold);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 162, 39, 0.3);
    margin-bottom: var(--space-4);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: var(--text-lg);
    line-height: 1.7;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 50%, var(--primary-light) 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-8);
    text-align: center;
}

.hero-content {
    animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    background: rgba(201, 162, 39, 0.2);
    color: var(--accent-gold-light);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 162, 39, 0.4);
    margin-bottom: var(--space-6);
    animation: heroFadeIn 1s ease forwards 0.2s;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    animation: heroFadeIn 1s ease forwards 0.4s;
    opacity: 0;
}

.hero-title .highlight {
    color: var(--accent-gold-light);
    position: relative;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto var(--space-8);
    line-height: 1.8;
    animation: heroFadeIn 1s ease forwards 0.6s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease forwards 0.8s;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-main);
    border: 2px solid var(--primary-main);
}

.btn-outline:hover {
    background: var(--primary-main);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollDot {

    0%,
    100% {
        opacity: 1;
        top: 6px;
    }

    50% {
        opacity: 0.5;
        top: 14px;
    }
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
    background: var(--primary-dark);
    padding: var(--space-12) 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    text-align: center;
}

.stat-item {
    padding: var(--space-4);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   ABOUT PREVIEW SECTION
   ========================================== */
.about-preview {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    color: var(--dark-gray);
}

.image-placeholder span {
    font-size: var(--text-sm);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: var(--space-8);
}

.about-text {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.about-features {
    margin: var(--space-6) 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: var(--near-black);
    font-weight: 500;
}

.about-features svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: var(--space-16) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(26, 54, 93, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--primary-main);
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-3);
}

.service-desc {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.service-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.service-link:hover {
    color: var(--accent-gold-dark);
    letter-spacing: 1px;
}

.services-cta {
    text-align: center;
    margin-top: var(--space-10);
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-us {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
}

.why-us .section-badge {
    background: rgba(201, 162, 39, 0.2);
    border-color: rgba(201, 162, 39, 0.4);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: var(--space-4);
}

.why-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.why-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */
.projects {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image .image-placeholder {
    height: 100%;
    aspect-ratio: auto;
}

.project-content {
    padding: var(--space-6);
}

.project-category {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: rgba(26, 54, 93, 0.1);
    color: var(--primary-main);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-3);
}

.project-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-3);
}

.project-desc {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--light-gray);
    font-size: var(--text-xs);
}

.project-location {
    color: var(--dark-gray);
}

.project-status {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta {
    position: relative;
    padding: var(--space-16) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 50%, var(--accent-gold-light) 100%);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    color: rgba(10, 22, 40, 0.8);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   PAGE HERO BANNER (For Inner Pages)
   ========================================== */
.page-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-12);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--accent-gold-light);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--accent-gold-light);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.page-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   OUR STORY SECTION
   ========================================== */
.our-story {
    padding: var(--space-16) 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

.story-content .section-title {
    margin-bottom: var(--space-6);
}

.story-text {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.story-text:last-of-type {
    margin-bottom: 0;
}

/* ==========================================
   MISSION & VISION SECTION
   ========================================== */
.mission-vision {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
}

.mv-card {
    background: var(--white);
    padding: var(--space-12);
    border-radius: var(--radius-xl);
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Vision Card - Gold Icon */
.vision-icon {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.08) 100%);
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.vision-card:hover .vision-icon {
    transform: scale(1.1);
    background: var(--gradient-gold);
    color: var(--white);
}

/* Mission Card - Navy Blue Icon */
.mission-icon {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.15) 0%, rgba(26, 54, 93, 0.08) 100%);
    color: var(--primary-main);
    border: 2px solid var(--primary-main);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    color: var(--white);
}

.mv-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-4);
}

.mv-text {
    color: var(--dark-gray);
    line-height: 1.9;
    text-align: justify;
    font-size: var(--text-base);
}

/* Responsive MV Grid */
@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: var(--space-8);
    }
}

/* ==========================================
   CORE VALUES SECTION
   ========================================== */
.core-values {
    padding: var(--space-16) 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.value-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.value-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
}

.value-desc {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ==========================================
   STORY TEXT & KEY HIGHLIGHTS (About Page)
   ========================================== */
.story-text {
    text-align: justify;
    line-height: 1.8;
}

.story-text .highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

.key-highlights {
    margin-top: var(--space-16);
    padding-top: var(--space-12);
    border-top: 1px solid var(--light-gray);
}

.key-highlights .section-header {
    margin-bottom: var(--space-10);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-6);
}

.highlight-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
}

.highlight-desc {
    color: var(--dark-gray);
    font-size: var(--text-xs);
    line-height: 1.6;
}

/* Responsive Highlights Grid */
@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 576px) {
    .key-highlights {
        margin-top: var(--space-10);
        padding-top: var(--space-8);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .highlight-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: var(--space-4);
        padding: var(--space-5);
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }

    .highlight-icon svg {
        width: 24px;
        height: 24px;
    }

    .highlight-title {
        font-size: var(--text-sm);
        margin-bottom: var(--space-1);
    }

    .highlight-desc {
        font-size: var(--text-xs);
    }
}

/* ==========================================
   LEADERSHIP SECTION
   ========================================== */
.leadership {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
}

.leadership .section-badge {
    background: rgba(201, 162, 39, 0.2);
    border-color: rgba(201, 162, 39, 0.4);
}

.leadership .section-title {
    color: var(--white);
}

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

.leader-spotlight {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-10);
    align-items: start;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leader-image {
    position: relative;
}

.leader-placeholder {
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
}

.leader-content {
    color: var(--white);
}

.leader-name {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-1);
}

.leader-title {
    color: var(--accent-gold-light);
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
}

.leader-quote {
    margin-bottom: var(--space-6);
}

.leader-quote blockquote {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    padding-left: var(--space-6);
    border-left: 3px solid var(--accent-gold);
    line-height: 1.6;
}

.leader-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.leader-credentials {
    margin-bottom: var(--space-6);
}

.credential {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.credential strong {
    color: var(--accent-gold-light);
}

/* ==========================================
   OUR JOURNEY / MILESTONES SECTION - HORIZONTAL ROADMAP
   ========================================== */
.milestones {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

/* Horizontal Roadmap */
.roadmap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: var(--space-10);
}

/* Gold Dashed Line */
.roadmap::before {
    content: '';
    position: absolute;
    top: calc(var(--space-10) + 35px);
    left: 60px;
    right: 60px;
    height: 3px;
    background: repeating-linear-gradient(to right,
            var(--accent-gold) 0,
            var(--accent-gold) 15px,
            transparent 15px,
            transparent 25px);
}

.roadmap-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Navy Blue Circle */
.roadmap-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-5);
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.25);
    transition: all 0.4s ease;
}

.roadmap-item:hover .roadmap-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.35);
    border-color: var(--accent-gold);
}

/* Roadmap Content */
.roadmap-content {
    max-width: 200px;
}

.roadmap-period {
    display: block;
    font-size: var(--text-xs);
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.roadmap-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
}

.roadmap-content p {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* Responsive Roadmap */
@media (max-width: 992px) {
    .roadmap {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-6);
        padding-top: 0;
    }

    .roadmap::before {
        display: none;
    }

    .roadmap-item {
        flex-direction: row;
        text-align: left;
        gap: var(--space-5);
        background: var(--white);
        padding: var(--space-5);
        border-radius: var(--radius-lg);
        border: 1px solid var(--light-gray);
        box-shadow: var(--shadow-sm);
    }

    .roadmap-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .roadmap-circle svg {
        width: 24px;
        height: 24px;
    }

    .roadmap-content {
        max-width: none;
        flex: 1;
    }

    .roadmap-content h4 {
        font-size: var(--text-base);
    }

    .roadmap-content p {
        font-size: var(--text-xs);
    }
}

@media (max-width: 576px) {
    .roadmap-item {
        padding: var(--space-4);
        gap: var(--space-4);
    }

    .roadmap-circle {
        width: 50px;
        height: 50px;
    }

    .roadmap-period {
        font-size: 0.65rem;
    }

    .roadmap-content h4 {
        font-size: var(--text-sm);
        margin-bottom: var(--space-1);
    }

    .roadmap-content p {
        font-size: var(--text-xs);
        line-height: 1.5;
    }
}

.leadership .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.leadership .btn-outline:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

/* ==========================================
   MILESTONES TIMELINE
   ========================================== */
.milestones {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-8);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: var(--space-10);
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: var(--space-10);
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    max-width: calc(50% - 60px);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
}

.timeline-content p {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ==========================================
   SERVICES OVERVIEW (Services Page)
   ========================================== */
.services-overview {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

/* Services Intro Content */
.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    color: var(--dark-gray);
    font-size: var(--text-base);
    line-height: 1.9;
    margin-bottom: var(--space-5);
    text-align: justify;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text .highlight {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Service Items with Icons */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

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

.service-item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.service-item .intro-text {
    flex: 1;
    margin-bottom: 0;
}

/* Modern Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.service-card {
    background: var(--white);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
    border-color: var(--accent-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    border: 3px solid var(--accent-gold);
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-4);
}

.service-card-desc {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* Responsive: 2 columns on tablet */
@media (max-width: 992px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 576px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: var(--space-8);
    }
}

/* Legacy card styles - keeping for other uses */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.service-overview-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: all var(--transition-base);
    display: block;
    position: relative;
    overflow: hidden;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-overview-card:hover::before {
    transform: scaleX(1);
}

.soc-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(26, 54, 93, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-main);
    transition: all var(--transition-base);
}

.service-overview-card:hover .soc-icon {
    background: var(--gradient-gold);
    color: var(--primary-dark);
}

.soc-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
}

.soc-desc {
    color: var(--dark-gray);
    font-size: var(--text-sm);
    line-height: 1.6;
}

/* ==========================================
   SERVICE DETAIL SECTIONS
   ========================================== */
.service-detail {
    padding: var(--space-16) 0;
    background: var(--white);
}

.service-detail.alt-bg {
    background: var(--off-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse>* {
    direction: ltr;
}

.service-detail-content .section-title {
    margin-bottom: var(--space-5);
}

.service-detail-text {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: var(--near-black);
    font-weight: 500;
}

.service-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin-top: 2px;
    position: relative;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    color: var(--primary-dark);
    font-size: var(--text-xs);
    font-weight: 700;
    margin-left: 5px;
    margin-top: 4px;
}

.service-detail-image .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.service-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   OUR PROCESS SECTION
   ========================================== */
.our-process {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
}

.our-process .section-badge {
    background: rgba(201, 162, 39, 0.2);
    border-color: rgba(201, 162, 39, 0.4);
}

.our-process .section-title {
    color: var(--white);
}

.our-process .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: var(--space-6);
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-3);
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 3px;
    background: rgba(201, 162, 39, 0.4);
    margin-top: 55px;
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid rgba(201, 162, 39, 0.6);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1200px) {
    .tagline-section {
        display: none;
    }

    .header-container {
        gap: var(--space-4);
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 80px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--space-6) var(--space-4);
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        overflow: hidden;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-2);
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-lg);
        text-align: center;
        border-radius: var(--radius-md);
        color: var(--accent-gold);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(201, 162, 39, 0.1);
        color: var(--accent-gold-light);
    }

    .nav-link::after {
        display: none;
    }

    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-nav li a::before {
        display: none;
    }

    .footer-nav li a:hover {
        transform: none;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Homepage Sections Responsive - 992px */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .about-image {
        order: -1;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-features {
        display: inline-block;
        text-align: left;
    }

    .experience-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scroll-indicator {
        display: none;
    }

    /* About Page Responsive - 992px */
    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .story-image {
        order: -1;
    }

    .story-content {
        text-align: center;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-spotlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .leader-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto var(--space-6);
    }

    .leader-quote blockquote {
        border-left: none;
        border-top: 3px solid var(--accent-gold);
        padding-left: 0;
        padding-top: var(--space-4);
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-year {
        left: 30px;
        width: 60px;
        height: 60px;
        font-size: var(--text-sm);
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        max-width: 100%;
        margin-left: 80px;
        text-align: left;
        padding-left: var(--space-4);
        padding-right: 0;
    }

    /* Services Page - 992px */
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        direction: ltr;
    }

    .service-detail-content {
        text-align: center;
    }

    .service-detail-image {
        order: -1;
    }
}

@media (max-width: 768px) {

    /* Services Page - 768px */
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 70px;
    }

    .logo-img {
        height: 40px;
    }

    /* Homepage Sections Responsive - 576px */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        text-align: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-4);
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* About Page - 576px */
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        text-align: center;
    }

    /* Services Page - 576px */
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .service-overview-card {
        padding: var(--space-6);
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        direction: ltr;
    }

    .service-detail-content {
        text-align: center;
    }

    .service-features {
        text-align: left;
        display: inline-block;
    }

    .service-detail-image {
        order: -1;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        max-width: 100%;
    }
}

/* ==========================================
   TEAM PAGE - COMPACT CARDS
   ========================================== */
.team-section {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

.team-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.team-compact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-8);
    padding: var(--space-10);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.team-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.team-compact-image {
    flex-shrink: 0;
}

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 3px solid var(--accent-gold);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-compact-info {
    flex: 1;
    min-width: 0;
}

.team-compact-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-1);
    line-height: 1.3;
}

.team-compact-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-compact-bio {
    font-size: var(--text-xs);
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

/* Team Page Responsive */
@media (max-width: 1024px) {
    .team-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .team-compact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--space-6);
        gap: var(--space-4);
    }

    .team-avatar {
        width: 120px;
        height: 120px;
    }

    .team-compact-name {
        font-size: var(--text-base);
    }

    .team-compact-title {
        font-size: var(--text-xs);
    }

    .team-compact-bio {
        font-size: var(--text-xs);
    }
}

@media (max-width: 640px) {
    .team-compact-grid {
        grid-template-columns: 1fr;
    }

    .team-compact-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--space-8);
    }

    .team-avatar {
        width: 180px;
        height: 180px;
        margin-bottom: var(--space-4);
    }

    .team-compact-name {
        font-size: var(--text-lg);
    }

    .team-compact-title {
        font-size: var(--text-sm);
    }

    .team-compact-bio {
        font-size: var(--text-sm);
        line-height: 1.6;
    }
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-section {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-header {
    margin-bottom: var(--space-6);
}

.contact-form-header .section-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.contact-form-header p {
    color: var(--dark-gray);
    font-size: var(--text-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--near-black);
}

.form-group .required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    transition: all var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group select {
    cursor: pointer;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-info-header .section-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-info-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-1);
}

.contact-info-content p {
    font-size: var(--text-sm);
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--primary-main);
    transition: color var(--transition-base);
}

.contact-info-content a:hover {
    color: var(--accent-gold);
}

/* Contact Social */
.contact-social {
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.contact-social h4 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-4);
}

.contact-social .social-links {
    display: flex;
    gap: var(--space-3);
}

/* Map Section */
.map-section {
    padding: var(--space-12) 0 var(--space-16);
    background: var(--off-white);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    height: 350px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-main) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: var(--space-3);
}

.map-placeholder svg {
    opacity: 0.6;
}

.map-placeholder p {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
}

.map-placeholder span {
    font-size: var(--text-sm);
    opacity: 0.7;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-form-wrapper {
        padding: var(--space-5);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        height: 250px;
    }
}

/* Radio Button Group */
.radio-group {
    display: flex;
    gap: var(--space-6);
    margin-top: var(--space-2);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--near-black);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-base);
}

.radio-label input[type="radio"]:checked+.radio-custom {
    border-color: var(--accent-gold);
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.radio-label input[type="radio"]:checked+.radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.company-name-group {
    overflow: hidden;
    transition: all var(--transition-base);
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
    font-size: var(--text-sm);
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-message-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spin Animation for Loading */
.spin {
    animation: spinAnim 1s linear infinite;
}

@keyframes spinAnim {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   FOUNDER IMAGE STYLING
   ========================================== */
.leader-image {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.founder-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    object-position: center center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    padding: 6px;
    border: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow:
        0 10px 40px rgba(26, 54, 93, 0.15),
        0 0 0 4px var(--accent-gold),
        0 0 0 8px rgba(201, 162, 39, 0.2);
    transition: all var(--transition-base);
}

.founder-img:hover {
    transform: scale(1.02);
    box-shadow:
        0 15px 50px rgba(26, 54, 93, 0.2),
        0 0 0 5px var(--accent-gold),
        0 0 0 10px rgba(201, 162, 39, 0.25);
}

/* Responsive founder image */
@media (max-width: 992px) {
    .founder-img {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .founder-img {
        width: 180px;
        height: 180px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ==========================================
   PROJECTS/PROSPECTS GRID SECTION
   ========================================== */
.projects {
    padding: var(--space-16) 0;
    background: var(--off-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: var(--space-8);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.project-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image .image-placeholder svg {
    color: rgba(255, 255, 255, 0.3);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-base);
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

.project-content {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    background: rgba(201, 162, 39, 0.1);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2);
    align-self: flex-start;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.project-desc {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: var(--space-3);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: auto;
    padding-top: var(--space-3);
    border-top: 1px solid var(--light-gray);
}

.project-location {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

/* Tablet View: 2x2 Grid */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .project-title {
        font-size: 0.95rem;
    }
}

/* Mobile View: 2x2 Grid */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .project-image {
        height: 120px;
    }

    .project-content {
        padding: var(--space-4);
    }

    .project-category {
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .project-title {
        font-size: 0.85rem;
    }

    .project-desc {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .project-location {
        font-size: 0.65rem;
    }
}

/* Very Small Mobile: 1x1 Stack */
@media (max-width: 320px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-title {
        font-size: 0.9rem;
    }

    .project-desc {
        font-size: 0.8rem;
    }
}

/* ==========================================
   CORE VALUES SECTION
   ========================================== */
.values {
    padding: var(--space-12) 0;
    background: var(--primary-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.value-item {
    text-align: center;
    padding: var(--space-6);
}

.value-icon {
    margin-bottom: var(--space-4);
}

.value-icon svg {
    color: var(--accent-gold);
    stroke: var(--accent-gold);
}

.value-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
}

.value-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Values Tablet View */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

/* Values Mobile View */
@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .value-item {
        padding: var(--space-4);
    }

    .value-heading {
        font-size: 0.8rem;
    }

    .value-text {
        font-size: 0.8rem;
    }
}

/* ==========================================
   ABOUT SECTION IMAGE
   ========================================== */
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.about-image:hover .about-img {
    transform: scale(1.02);
}

/* Story Section Image */
.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.story-image:hover .story-img {
    transform: scale(1.02);
}

/* ==========================================
   MOBILE RESPONSIVE FIXES
   ========================================== */

/* General: Adequate padding on mobile */
@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* 1. Value Pillars Section - Centered on Mobile */
@media (max-width: 768px) {
    .values {
        padding: var(--space-10) 0;
    }

    .values-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-6);
    }

    .value-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 400px;
    }

    .value-icon {
        margin: 0 auto var(--space-4) auto;
    }

    .value-heading {
        text-align: center;
        width: 100%;
    }

    .value-text {
        text-align: center;
        width: 100%;
    }
}

/* 2. Services Section - Centered Icons and Text on Mobile */
@media (max-width: 768px) {
    .service-card {
        text-align: center;
    }

    .service-card-icon {
        margin: 0 auto var(--space-4) auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service-card-title {
        text-align: center;
    }

    .service-card-desc {
        text-align: center;
    }

    /* For detailed service sections */
    .service-detail-content {
        text-align: center;
    }

    .service-detail-content .section-badge {
        margin: 0 auto var(--space-3) auto;
    }

    .service-detail-content .section-title {
        text-align: center;
    }

    .service-detail-content .service-detail-text {
        text-align: center;
    }

    .service-features {
        text-align: left;
        display: inline-block;
    }
}

/* 3. Section Headers - Centered on Mobile */
@media (max-width: 768px) {
    .section-header {
        text-align: center;
    }

    .section-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title {
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }
}

/* ==========================================
   AT A GLANCE / HIGHLIGHT CARDS SECTION
   ========================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.highlight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.highlight-icon svg {
    color: var(--white);
    stroke: var(--white);
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-3);
}

.highlight-desc {
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    flex: 1;
}

/* Tablet View - Centered */
@media (max-width: 1024px) {
    .highlight-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .highlight-icon {
        margin: 0 auto 15px auto;
    }

    .highlight-title {
        text-align: center;
    }

    .highlight-desc {
        text-align: center;
    }
}

/* Mobile View - Centered */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .highlight-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .highlight-icon {
        margin: 0 auto 15px auto;
    }

    .highlight-title {
        text-align: center;
        font-size: 1rem;
    }

    .highlight-desc {
        text-align: center;
        font-size: 0.85rem;
    }
}

/* ==========================================
   OUR SERVICES SECTION - ICON CENTERING
   ========================================== */
.service-card {
    text-align: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-main) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4) auto;
}

.service-icon svg {
    color: var(--white);
    stroke: var(--white);
}

.service-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-3);
}

.service-desc {
    text-align: center;
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.service-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-base);
}

.service-link:hover {
    color: var(--primary-main);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

/* Mobile View */
@media (max-width: 768px) {
    .service-card {
        text-align: center;
        padding: var(--space-5);
    }

    .service-icon {
        margin: 0 auto var(--space-4) auto;
    }

    .service-title {
        text-align: center;
    }

    .service-desc {
        text-align: center;
    }
}