:root {
    --primary-bg: #050a14;
    --secondary-bg: #0a192f;
    --gold: #c5a028;
    --gold-light: #e5c76b;
    --gold-gradient: linear-gradient(135deg, #c5a028 0%, #e5c76b 50%, #c5a028 100%);
    --text-main: #f8f9fa;
    --text-muted: #a0aec0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(197, 160, 40, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Loader Styles Removed */

/* Header */
header {
    padding: 6rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at top, rgba(197, 160, 40, 0.1) 0%, transparent 70%);
}

.logo-area {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    display: inline-block;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 15px rgba(197, 160, 40, 0.2);
}

.main-logo-img {
    max-width: 250px;
    height: auto;
}

.company-name {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.header-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 2rem auto 0;
}

/* Cards Layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 160, 40, 0.1);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(5, 10, 20, 0.8));
}

.card-logo {
    position: relative;
    z-index: 2;
    max-width: 180px;
    max-height: 100px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    filter: none; /* Removed drop shadow since we have a box */
}

.card-content {
    padding: 2.5rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--primary-bg);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px var(--gold);
}

/* Contact Section Styles Removed */

/* WhatsApp Float Styles Removed */

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    header { padding: 4rem 0 2rem; }
    .cards-grid { grid-template-columns: 1fr; padding: 2rem 0; }
    .container { padding: 0 1.5rem; }
    .company-name { font-size: 2.5rem; }
}
