/* ============================================
   C2S SOLUTION - Main Stylesheet
   Light Theme with Golden Accents - 2026 Trends
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --primary: #D4AF37;
    --primary-dark: #B8962E;
    --primary-light: #E8C84A;
    --secondary: #C5A028;
    --accent: #FFD700;
    --accent-light: #FFE55C;
    --accent-glow: rgba(212, 175, 55, 0.4);
    --light: #ffffff;
    --light-secondary: #f8f9fa;
    --light-tertiary: #f0f1f2;
    --dark: #1a1a1a;
    --dark-medium: #333333;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;
    --text-gray: #555555;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(212, 175, 55, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: var(--light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(248, 249, 250, 0.5) 100%);
    pointer-events: none;
    z-index: -1;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    padding: 0.7rem 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

.navbar-brand span {
    color: var(--text-dark);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--light-tertiary);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler::before,
.navbar-toggler::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-toggler::before { top: 12px; }
.navbar-toggler::after { bottom: 12px; }

.navbar-toggler[aria-expanded="true"]::before {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
}

.navbar-toggler[aria-expanded="true"]::after {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 19px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    color: var(--text-dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.nav-link:hover {
    color: var(--primary-dark) !important;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-glow {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, #FFD700, #D4AF37, #FFD700, #D4AF37);
    background-size: 300% 100%;
    z-index: -1;
    border-radius: 10px;
    animation: snakeBorder 4s linear infinite;
    opacity: 0.8;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 6px;
    z-index: -1;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.btn-glow:hover::before {
    animation: snakeBorder 2s linear infinite;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--light) 0%, var(--light-secondary) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    /* max-width: 900px; */
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Floating Shapes ===== */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.08);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.06);
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(197, 160, 40, 0.08);
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

/* ===== Cards ===== */
.card {
    background: var(--light);
    border: 1px solid var(--light-tertiary);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-soft);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(255, 215, 0, 0.1));
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card p {
    margin-bottom: 0;
}

/* ===== Service Cards ===== */
.service-card {
    background: var(--light);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-tertiary);
    box-shadow: var(--shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
}

/* ===== Grid Layouts ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.row > * {
    padding: 15px;
}

.col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }

/* ===== About Section ===== */
.about-section {
    background: linear-gradient(180deg, var(--light) 0%, var(--light-secondary) 100%);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.15), rgba(255, 215, 0, 0.08));
    z-index: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
    border: 1px solid var(--light-tertiary);
    box-shadow: var(--shadow-soft);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: block;
}

/* ===== Timeline ===== */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* ===== Contact Section ===== */
.contact-section {
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    border: 1px solid var(--light-tertiary);
    box-shadow: var(--shadow-soft);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white;
}

.contact-details h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.contact-details p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ===== Form ===== */
.contact-form {
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
    border: 1px solid var(--light-tertiary);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--light-secondary);
    border: 1px solid var(--light-tertiary);
    border-radius: 10px;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.form-control::placeholder {
    color: var(--text-gray);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666666' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* ===== Footer ===== */
.footer {
    background: var(--light-tertiary);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.footer-about p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== Page Header ===== */
.page-header {
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Enhanced Geometric Pattern Design - Modern & Professional */
.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Main grid background */
.geometric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridScroll 30s linear infinite;
}

@keyframes gridScroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-40px, -40px); }
}

/* Geometric Circles */
.geo-circle {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: circlePulse 6s ease-in-out infinite;
}

.geo-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
    animation-delay: 0s;
}

.geo-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -30px;
    animation-delay: -2s;
}

.geo-circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation-delay: -4s;
    border-color: rgba(0, 114, 255, 0.1);
}

@keyframes circlePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Geometric Squares - Modern Angled */
.geo-square {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.03);
    animation: squareFloat 10s ease-in-out infinite;
}

.geo-square-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.geo-square-2 {
    width: 70px;
    height: 70px;
    top: 25%;
    right: 12%;
    transform: rotate(-25deg);
    animation-delay: -2s;
}

.geo-square-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 5%;
    transform: rotate(30deg);
    animation-delay: -4s;
}

.geo-square-4 {
    width: 50px;
    height: 50px;
    bottom: 30%;
    right: 8%;
    transform: rotate(-15deg);
    animation-delay: -6s;
}

/* Diagonal Lines */
.geo-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: lineMove 8s ease-in-out infinite;
}

.geo-line-1 {
    width: 200px;
    top: 30%;
    left: -50px;
    transform: rotate(-30deg);
    animation-delay: 0s;
}

.geo-line-2 {
    width: 150px;
    top: 60%;
    right: -30px;
    transform: rotate(25deg);
    animation-delay: -3s;
}

.geo-line-3 {
    width: 100px;
    bottom: 40%;
    left: 30%;
    transform: rotate(-45deg);
    animation-delay: -5s;
}

@keyframes lineMove {
    0%, 100% {
        transform: translateX(0) rotate(var(--line-angle, -30deg));
        opacity: 0.3;
    }
    50% {
        transform: translateX(30px) rotate(var(--line-angle, -30deg));
        opacity: 0.6;
    }
}

/* Small Accent Dots */
.geo-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    animation: dotPulse 4s ease-in-out infinite;
}

.geo-dot-1 { top: 20%; left: 25%; animation-delay: 0s; }
.geo-dot-2 { top: 40%; right: 30%; animation-delay: -1s; }
.geo-dot-3 { bottom: 35%; left: 20%; animation-delay: -2s; }
.geo-dot-4 { bottom: 50%; right: 25%; animation-delay: -3s; }
.geo-dot-5 { top: 55%; left: 40%; animation-delay: -1.5s; }
.geo-dot-6 { top: 70%; right: 15%; animation-delay: -2.5s; }

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: scale(1.5);
        opacity: 0.8;
    }
}

/* Abstract Triangles */
.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid rgba(212, 175, 55, 0.1);
    animation: triangleFloat 7s ease-in-out infinite;
}

.geo-triangle-1 {
    top: 35%;
    left: 15%;
    animation-delay: 0s;
}

.geo-triangle-2 {
    top: 45%;
    right: 20%;
    transform: rotate(180deg);
    animation-delay: -3s;
}

.geo-triangle-3 {
    bottom: 25%;
    left: 35%;
    transform: rotate(90deg);
    animation-delay: -5s;
}

@keyframes triangleFloat {
    0%, 100% {
        transform: translateY(0) rotate(var(--tri-angle, 0deg));
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) rotate(var(--tri-angle, 0deg));
        opacity: 0.6;
    }
}

/* Gradient Orbs */
.geo-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.08;
    animation: orbFloat 15s ease-in-out infinite;
}

.geo-orb-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.geo-orb-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    bottom: -100px;
    right: -80px;
    animation-delay: -7s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-10px, 10px) scale(0.95);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .geo-circle-1 { width: 200px; height: 200px; }
    .geo-circle-2 { width: 150px; height: 150px; }
    .geo-circle-3 { display: none; }
    
    .geo-square-1 { width: 70px; height: 70px; }
    .geo-square-2 { width: 50px; height: 50px; }
    .geo-square-3 { width: 80px; height: 80px; }
    .geo-square-4 { width: 40px; height: 40px; }
    
    .geo-line { display: none; }
    .geo-triangle { display: none; }
}

@media (max-width: 576px) {
    .geo-circle { display: none; }
    .geo-square { display: none; }
    .geo-dot { display: none; }
    .geo-orb { width: 150px !important; height: 150px !important; }
    
    .geo-square-1, .geo-square-3 {
        display: block;
        width: 40px;
        height: 40px;
    }
}

/* Fallback - Simple Square Pattern for browsers */
.square-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.square {
    position: absolute;
    border: 3px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    animation: squareFloat 8s ease-in-out infinite;
}

.square-1 { width: 120px; height: 120px; top: 10%; left: 5%; animation-delay: 0s; transform: rotate(15deg); }
.square-2 { width: 80px; height: 80px; top: 20%; right: 10%; animation-delay: -1s; transform: rotate(-20deg); }
.square-3 { width: 150px; height: 150px; bottom: 15%; left: 8%; animation-delay: -2s; transform: rotate(25deg); }
.square-4 { width: 60px; height: 60px; bottom: 25%; right: 15%; animation-delay: -3s; transform: rotate(-10deg); }
.square-5 { width: 50px; height: 50px; top: 40%; left: 20%; animation-delay: -4s; transform: rotate(45deg); }
.square-6 { width: 45px; height: 45px; top: 30%; right: 25%; animation-delay: -5s; transform: rotate(-30deg); }
.square-7 { width: 55px; height: 55px; bottom: 40%; left: 15%; animation-delay: -1.5s; transform: rotate(10deg); }
.square-8 { width: 40px; height: 40px; bottom: 30%; right: 30%; animation-delay: -2.5s; transform: rotate(-45deg); }
.square-9 { width: 25px; height: 25px; top: 15%; left: 35%; animation-delay: -6s; transform: rotate(5deg); }
.square-10 { width: 30px; height: 30px; top: 50%; right: 5%; animation-delay: -7s; transform: rotate(-15deg); }
.square-11 { width: 20px; height: 20px; bottom: 20%; left: 40%; animation-delay: -0.5s; transform: rotate(30deg); }
.square-12 { width: 35px; height: 35px; top: 60%; left: 50%; animation-delay: -1.5s; transform: rotate(-25deg); }
.square-13 { width: 15px; height: 15px; top: 25%; left: 55%; animation-delay: -3.5s; background: rgba(212, 175, 55, 0.2); border-color: rgba(212, 175, 55, 0.5); transform: rotate(20deg); }
.square-14 { width: 18px; height: 18px; top: 70%; right: 40%; animation-delay: -4.5s; background: rgba(212, 175, 55, 0.15); border-color: rgba(212, 175, 55, 0.4); transform: rotate(-35deg); }
.square-15 { width: 12px; height: 12px; bottom: 45%; left: 25%; animation-delay: -5.5s; background: rgba(212, 175, 55, 0.25); border-color: rgba(212, 175, 55, 0.6); transform: rotate(45deg); }
.square-16 { width: 22px; height: 22px; top: 35%; left: 8%; animation-delay: -2s; background: rgba(212, 175, 55, 0.1); border-color: rgba(212, 175, 55, 0.3); transform: rotate(-8deg); }

@keyframes squareFloat {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 0deg)); opacity: 0.6; }
    50% { transform: translateY(-15px) rotate(calc(var(--rotation, 0deg) + 5deg)); opacity: 0.9; }
}

@media (max-width: 768px) {
    .square-1, .square-2, .square-3, .square-4 { width: 60px; height: 60px; }
    .square-5, .square-6, .square-7, .square-8 { width: 30px; height: 30px; }
    .square-9, .square-10, .square-11, .square-12 { width: 18px; height: 18px; }
    .square-13, .square-14, .square-15, .square-16 { display: none; }
}

@media (max-width: 576px) {
    .square { display: none; }
    .square-1, .square-2, .square-3 { display: block; width: 40px; height: 40px; }
}

.page-header::before {    background: linear-gradient(180deg, var(--light) 0%, var(--light-secondary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.page-header h1 {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb li {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.breadcrumb li a {
    color: var(--primary-dark);
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-muted);
}

/* ===== Section Titles ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-title h2 {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 30px;
    background: var(--light);
    border-radius: 16px;
    border: 1px solid var(--light-tertiary);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

/* ===== Scroll Animations ===== */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-left.show {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-right.show {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .col-md-4 { flex: 0 0 50%; max-width: 50%; }
    .col-md-6 { flex: 0 0 100%; max-width: 100%; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .col-md-4 { 
        flex: 0 0 100%; 
        max-width: 100%; 
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
}

/* ===== Loading Animation ===== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-tertiary);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Smooth Scroll ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Selection ===== */
::selection {
    background: var(--primary);
    color: white;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Animations ===== */
@keyframes snakeBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Additional Light Theme Styles ===== */
.text-accent {
    color: #B8962E !important;
}

/* Override dark sections for light theme */
.section[style*="background: linear-gradient(180deg, var(--dark-light)"] {
    background: var(--light-secondary) !important;
}

.section[style*="background: linear-gradient(180deg, var(--dark)"] {
    background: var(--light) !important;
}

.section[style*="background-color: #f5f5f5"] {
    background-color: #f5f5f5 !important;
}

.section[style*="background-color: #f5f5f5"] h2,
.section[style*="background-color: #f5f5f5"] h3,
.section[style*="background-color: #f5f5f5"] h4,
.section[style*="background-color: #f5f5f5"] p,
.section[style*="background-color: #f5f5f5"] span {
    color: #1a1a1a !important;
}

.card[style*="text-align: center; padding: 60px;"] {
    background: var(--light);
    border: 1px solid var(--light-tertiary);
    box-shadow: var(--shadow-soft);
}

.footer-links-section h4,
.footer-links-section li {
    color: var(--text-dark);
}

/* Feature boxes for light theme */
.feature-box h4 {
    color: #1a1a1a !important;
}

.feature-box p {
    color: #555555 !important;
}

/* Contact info icons */
.contact-info h3,
.contact-info h4 {
    color: var(--text-dark);
}

/* Timeline */
.timeline-item h4 {
    color: var(--text-dark);
}

/* Team section */
.card[style*="text-align: center;"] h4 {
    color: var(--text-dark);
}

/* FAQ section */
.card h4 {
    color: var(--text-dark);
}

/* Values */
.value-item h4 {
    color: var(--text-dark);
}
