/* =====================================================
   HAYAITI HOLDINGS LTD. - Premium Corporate Styles
   Institutional Investment Firm Design
   ===================================================== */

/* CSS Variables */
:root {
    --primary: #0a1628;
    --primary-light: #162340;
    --primary-dark: #050d18;
    --secondary: #1e3a5f;
    --accent: #b8960c;
    --accent-light: #d4af37;
    --accent-dark: #96790a;
    --accent-glow: rgba(184, 150, 12, 0.15);
    --text: #2d3748;
    --text-light: #4a5568;
    --text-muted: #718096;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-50: #f9fafb;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-800: #1a202c;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-subtle: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248,249,250,1) 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 5px 10px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 10px 20px rgba(0,0,0,0.04);
    --shadow-2xl: 0 30px 60px rgba(0,0,0,0.1), 0 15px 30px rgba(0,0,0,0.05);
    --shadow-gold: 0 4px 20px rgba(184, 150, 12, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.25;
    color: var(--primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 1.5px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(184, 150, 12, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(30, 58, 95, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 90%, rgba(184, 150, 12, 0.05) 0%, transparent 40%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-1 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 150, 12, 0.3), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    padding: 140px 0 100px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-title-sub {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 620px;
    margin-bottom: 48px;
    line-height: 1.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-indicator {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--accent);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-20px); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(60px); opacity: 0; }
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

/* Stats Section */
.stats {
    padding: 0;
    background: var(--white);
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 48px 32px;
    position: relative;
    transition: var(--transition);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--gray-200);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item:hover {
    background: var(--gray-50);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Section Styling */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    padding-left: 48px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-tag {
    padding-left: 0;
}

.section-header .section-tag::before {
    display: none;
}

/* About Preview */
.about-preview {
    padding: 140px 0;
    background: var(--off-white);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-content .btn {
    margin-top: 24px;
}

.about-card {
    background: var(--white);
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.card-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--gradient-accent);
    z-index: -1;
    opacity: 0.2;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.about-card > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.card-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
}

/* Why Choose Us */
.why-us {
    padding: 140px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 0% 50%, rgba(184, 150, 12, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 100% 50%, rgba(30, 58, 95, 0.3) 0%, transparent 50%);
}

.why-us .section-header {
    position: relative;
    z-index: 1;
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 48px 40px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 150, 12, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(184, 150, 12, 0.3);
    transform: translateY(-4px);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(184, 150, 12, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.why-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.why-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin: 0;
}

/* Services Preview */
.services-preview {
    padding: 140px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 44px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--accent);
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 14px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

/* Credentials Section */
.credentials {
    padding: 100px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

.credential-item h4 {
    font-family: var(--font-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.credential-item p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--primary);
    margin: 0;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(184, 150, 12, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(30, 58, 95, 0.3) 0%, transparent 40%);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 150, 12, 0.3), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1875rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 100px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    margin-bottom: 28px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-ocn {
    color: var(--accent) !important;
    font-weight: 500;
    font-size: 0.875rem !important;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact address {
    font-style: normal;
    color: rgba(255,255,255,0.5);
    font-size: 0.9375rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.footer-contact a {
    color: var(--accent);
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: rgba(255,255,255,0.35);
    font-size: 0.8125rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Page Header (for inner pages) */
.page-header {
    padding: 180px 0 100px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 50%, rgba(184, 150, 12, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 70% 30%, rgba(30, 58, 95, 0.3) 0%, transparent 40%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 150, 12, 0.3), transparent);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.page-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1.1875rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    font-size: 0.8125rem;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--accent);
}

/* About Page Styles */
.about-section {
    padding: 120px 0;
}

.about-section.alt {
    background: var(--off-white);
}

.about-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-intro p {
    font-size: 1.1875rem;
    color: var(--text-light);
    line-height: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--white);
    padding: 56px 44px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-glow);
}

.value-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--white);
    border-radius: 50%;
    z-index: 0;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.value-card h3 {
    margin-bottom: 18px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.info-card {
    background: var(--white);
    padding: 44px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-left: 3px solid var(--accent);
}

.info-card h4 {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.info-card h3 {
    margin-bottom: 14px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.25rem;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* Services Page Styles */
.services-section {
    padding: 120px 0;
}

.services-section.alt {
    background: var(--off-white);
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 72px;
    text-align: center;
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.9;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.service-content p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text);
    font-size: 1rem;
}

.service-features li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}

.service-visual {
    background: var(--gradient-primary);
    padding: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.service-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(184, 150, 12, 0.15) 0%, transparent 50%);
}

.service-visual svg {
    width: 140px;
    height: 140px;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-item {
    display: flex;
    gap: 24px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.contact-item h4 {
    font-family: var(--font-primary);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.contact-item a {
    color: var(--primary);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--white);
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.contact-form > p {
    color: var(--text-muted);
    margin-bottom: 36px;
    font-size: 0.9375rem;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-form .btn {
    width: 100%;
    padding: 18px 36px;
}

/* Map Section */
.map-section {
    padding: 0;
    height: 450px;
    background: var(--gray-100);
    position: relative;
}

.map-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    color: var(--text-muted);
}

.map-placeholder svg {
    width: 56px;
    height: 56px;
    opacity: 0.4;
}

.map-placeholder p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 60px;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 72px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        gap: 36px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero-content {
        padding: 160px 0 120px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-scroll {
        display: none;
    }

    .stats {
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        border-radius: var(--radius-md);
    }

    .stat-item {
        padding: 32px;
        border-bottom: 1px solid var(--gray-200);
    }

    .stat-item::after {
        display: none;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .values-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 36px 28px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trust-bar-content {
        flex-direction: column;
        gap: 24px;
    }

    .about-preview,
    .services-preview,
    .why-us,
    .about-section,
    .services-section,
    .contact-section {
        padding: 80px 0;
    }

    .cta {
        padding: 80px 0;
    }

    .page-header {
        padding: 140px 0 72px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.8125rem;
    }

    .hero-content {
        padding: 140px 0 100px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .value-card,
    .why-card {
        padding: 36px 28px;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
        font-size: 1.375rem;
    }

    .logo-text {
        font-size: 1.125rem;
        letter-spacing: 3px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Utility Classes */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* =====================================================
   POLISH & ENHANCEMENTS
   ===================================================== */

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 0 auto 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* Enhanced Button Effects */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

/* Card Hover Glow Effect */
.service-card::after,
.value-card::after,
.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--accent-glow), transparent 40%);
    pointer-events: none;
}

.service-card:hover::after,
.value-card:hover::after {
    opacity: 1;
}

/* Smooth Image Loading */
img {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img.loaded, img[src] {
    opacity: 1;
}

/* Enhanced Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Text Selection */
::selection {
    background: var(--accent);
    color: var(--primary);
}

::-moz-selection {
    background: var(--accent);
    color: var(--primary);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Enhanced Link Underlines */
.footer-contact a,
.contact-item a {
    position: relative;
    display: inline-block;
}

.footer-contact a::after,
.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-contact a:hover::after,
.contact-item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Floating Label Effect for Forms */
.form-group {
    position: relative;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-24px) scale(0.85);
    color: var(--accent);
}

/* Number Counter Animation */
.stat-number {
    display: inline-block;
}

/* Gradient Text Effect */
.hero-title {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Card Number Styling */
.card-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtle Grid Background */
.about-preview::after,
.services-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.5;
}

.about-preview,
.services-preview {
    position: relative;
}

/* Improved Section Dividers */
.about-section::before,
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent);
    opacity: 0;
}

/* Icon Hover Effects */
.service-icon,
.value-icon,
.why-icon,
.contact-icon,
.card-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon,
.value-card:hover .value-icon,
.contact-item:hover .contact-icon {
    transform: scale(1.05);
}

/* Stats Counter Highlight */
.stat-item {
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.stat-item:hover::before {
    width: 40px;
}

/* CTA Section Particles/Dots */
.cta::before {
    background-image: radial-gradient(circle at 20% 30%, rgba(184, 150, 12, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(184, 150, 12, 0.08) 0%, transparent 40%),
                      radial-gradient(circle at 40% 80%, rgba(30, 58, 95, 0.2) 0%, transparent 30%);
}

/* Credential Items Enhancement */
.credential-item {
    position: relative;
    padding: 24px;
    transition: transform 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-4px);
}

.credential-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease, width 0.3s ease;
}

.credential-item:hover::before {
    opacity: 1;
    width: 60px;
}

/* Page Transition */
.page-transition {
    animation: pageIn 0.6s ease forwards;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved Form Input Styles */
.form-group input,
.form-group select,
.form-group textarea {
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--gray-400, #adb5bd);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow), 0 2px 8px rgba(0,0,0,0.08);
}

/* Navigation Active Indicator */
.nav-links a.active {
    position: relative;
}

.nav-links a.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}

/* Hero Content Stagger Animation */
.hero-content > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }

/* Smooth Scroll Offset for Fixed Header */
html {
    scroll-padding-top: 100px;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Service Visual Animation */
.service-visual svg {
    transition: transform 0.6s ease;
}

.service-detail:hover .service-visual svg {
    transform: scale(1.05) rotate(2deg);
}

/* Info Card Hover */
.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

/* Why Card Icon Animation */
.why-icon svg {
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon svg {
    transform: scale(1.1);
}

/* Footer Link Animations */
.footer-links li {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(4px);
}

/* CTA Button Pulse on Hover */
.cta .btn-white {
    animation: none;
}

.cta .btn-white:hover {
    animation: subtlePulse 1s ease infinite;
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* Section Tag Animation */
.section-tag {
    display: inline-block;
    transition: transform 0.3s ease;
}

.section-header:hover .section-tag {
    transform: translateY(-2px);
}

/* Breadcrumb Hover */
.breadcrumb a {
    position: relative;
    padding-bottom: 2px;
}

.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
    width: 100%;
}

/* Service Feature List Animation */
.service-features li {
    transition: transform 0.3s ease, padding-left 0.3s ease;
}

.service-features li:hover {
    transform: translateX(4px);
    padding-left: 4px;
}

/* About Card Shine Effect */
.about-card {
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255,255,255,0.03) 45%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.03) 55%,
        transparent 60%
    );
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.about-card:hover::before {
    transform: rotate(45deg) translateY(100%);
}

/* Smooth Image Reveal */
.about-image,
.service-visual {
    overflow: hidden;
}

/* Hero Scroll Bounce */
.hero-scroll {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Loading State for Form Button */
.btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

/* Credential Grid Hover Effect */
.credentials-grid {
    transition: transform 0.3s ease;
}

/* Stats Number Glow */
.stat-number {
    transition: text-shadow 0.3s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(184, 150, 12, 0.3);
}

/* Section Title Underline Animation */
.section-title {
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.section-header:hover .section-title::after {
    width: 100px;
}

/* Contact Form Success State */
.form-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    color: #22c55e;
}

/* Print Styles */
@media print {
    .header, .footer, .cta, .hero-scroll, .page-loader {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .page-header {
        background: none;
        color: #000;
        padding: 20px 0;
    }
}
