/* --- Variables & Reset --- */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-input: #1f1f1f;
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    
    /* Metallic Gold Gradient */
    --gold-primary: #d4af37;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #d4af37 100%);
    
    /* Metallic Silver */
    --silver-primary: #c0c0c0;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; }
.text-gold { color: var(--gold-primary); }
.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tagline {
    display: block;
    color: var(--silver-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* --- Layout Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.small-container { max-width: 600px; }
.section-padding { padding: 5rem 0; }
.bg-darker { background-color: #050505; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.center { text-align: center; }
.text-secondary { color: var(--text-secondary); }

/* --- Components --- */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    border: none;
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }

.btn-outline {
    background: transparent;
    border-color: var(--silver-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.card {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

/* --- Navbar & Logo --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

/* Custom Logo Styling */
.logo-wrapper { display: flex; align-items: center; text-decoration: none; }
.logo-img {
    height: 60px; /* INCREASED from 40px */
    width: auto;
    object-fit: contain;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; transition: var(--transition); }
.nav-links a:hover { color: var(--gold-primary); }

.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- Hero --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1503376763036-066120622c74?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, #0a0a0aa1 0%, rgba(10,10,10,0.7) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin: 1rem 0; }
.hero p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; }

/* --- About Stats --- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.stat-card { background: var(--bg-card); padding: 1.5rem; text-align: center; border-left: 2px solid var(--gold-primary); }
.stat-card h3 { font-size: 2.5rem; color: var(--text-primary); display: inline-block; }
.stat-card span { font-size: 2.5rem; color: var(--gold-primary); }

/* --- Services & Partners --- */
.section-header { margin-bottom: 4rem; }
.service-card i { font-size: 2.5rem; margin-bottom: 1.5rem; }
.icon-gold { color: var(--gold-primary); }
.icon-silver { color: var(--silver-primary); }

.partner-card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.partner-icon {
    font-size: 3rem; color: var(--silver-primary); margin-bottom: 1rem;
}
.partner-card:hover .partner-icon { color: var(--gold-primary); }

/* --- NEW Contact Display --- */
.contact-display {
    padding: 3rem;
}
.company-name {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.contact-details-large {
    font-size: 1.2rem;
    color: var(--silver-primary);
    margin-bottom: 2rem;
    line-height: 2;
}
.contact-details-large i {
    margin-right: 10px;
}
.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* --- Footer --- */
footer { border-top: 1px solid rgba(255,255,255,0.05); padding: 4rem 0 1rem; background: #050505; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2rem; }

.footer-logo {
    margin-bottom: 10px;
    height: 50px; /* Slightly smaller than nav, but still prominent */
}

/* Text Colors */
.footer-slogan {
    color: #a0a0a0; /* Requested Gray */
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-legal-details {
    color: #a0a0a0; /* Requested Gray */
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials a { color: var(--silver-primary); font-size: 1.2rem; margin-left: 1rem; transition: var(--transition); }
.footer-socials a:hover { color: var(--gold-primary); }
.footer-bottom { text-align: center; color: #555; font-size: 0.9rem; }

/* --- Animations --- */
.fade-in-up { animation: fadeInUp 1s ease-out; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 70%;
        background: var(--bg-dark); flex-direction: column; padding: 5rem 2rem;
        transition: 0.4s ease; border-left: 1px solid #333;
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1001; }
    .nav-actions .btn { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .split-layout { grid-template-columns: 1fr; }
    .contact-actions { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 2rem; }
}

/* Prevents phone numbers from changing color on iOS */
a[href^="tel"] {
    color: inherit; /* Takes the color of the text around it */
    text-decoration: none; /* Removes the underline */
}

/* Specifically for your gold phone number in the contact card */
.contact-details-large a {
    color: var(--text-primary);
    text-decoration: none;
}

/* Ensure the footer links stay gray */
.footer-legal-details a {
    color: #a0a0a0;
    text-decoration: none;
}


/* Specifically targets the phone number in the Contact Section to keep it Gold */
.contact-details-large a {
    color: #a0a0a0 !important;
    text-decoration: none;
    font-weight: 600;
}

/* Keeps the footer phone number Grey as requested */
.footer-legal-details a {
    color: #a0a0a0 !important;
    text-decoration: none;
}

/* Global fix to ensure iPhone doesn't override these again */
a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}
/* Keeps both phone and email links in the footer Gray */
.footer-legal-details a {
    color: #a0a0a0 !important;
    text-decoration: none !important;
    transition: var(--transition);
}

.footer-legal-details a:hover {
    color: var(--gold-primary) !important;
}

/* Keeps the phone number in the Contact Card Gold */
.contact-details-large a {
    color: var(--gold-primary) !important;
    text-decoration: none !important;
}