/* ===== GLOBALS ===== */
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #444;
    overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.gradient-text {
    background: linear-gradient(135deg, #d8b65d 0%, #f4d88a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(216, 182, 93, 0.3);
}

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(216, 182, 93, 0.4); }
    50% { box-shadow: 0 0 40px rgba(216, 182, 93, 0.7); }
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== HERO HEADER ===== */
.hero-header {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1c2228;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../images/about_background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 34, 40, 0.9) 0%, rgba(28, 34, 40, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon svg {
    width: 100%;
    height: 100%;
    color: #d8b65d;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #d8b65d;
    color: #1c2228;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down svg {
    width: 32px;
    height: 32px;
    color: #d8b65d;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: #1c2228;
}

.section-light {
    background: white;
}

.section-gradient {
    background: linear-gradient(135deg, #1c2228 0%, #2a3138 100%);
}

.section-gold {
    background: #d8b65d;
    position: relative;
    overflow: hidden;
}

.section-gold::before,
.section-gold::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: white;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(80px);
}

.section-gold::before {
    top: 0;
    left: 0;
}

.section-gold::after {
    bottom: 0;
    right: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SECTION TITLES ===== */
.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #d8b65d;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1c2228;
}

.section-dark .section-title,
.section-gradient .section-title {
    color: white;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== WHO WE ARE ===== */
.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

.content-text strong {
    color: #d8b65d;
}

.image-wrapper {
    position: relative;
}

.image-background {
    position: absolute;
    inset: 0;
    background: #d8b65d;
    border-radius: 30px;
    transform: rotate(3deg);
}

.image-front {
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 182, 93, 0.2);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.service-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-text {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1c2228 0%, #2a3138 100%);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: #d8b65d;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1c2228;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* ===== VISION SECTION ===== */
.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 30px;
}

.vision-icon svg {
    width: 100%;
    height: 100%;
    color: #d8b65d;
}

.vision-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #d1d5db;
}

/* ===== CTA SECTION ===== */
.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1c2228;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 20px 50px;
    background: #1c2228;
    color: #d8b65d;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .two-columns {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}