/* HMR Group - Premium Corporate Styles Redesign */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Brand Colors (Updated to match logo) */
    --clr-navy: #111111; /* Charcoal Black */
    --clr-gold: #CD9A2B;
    --clr-gold-light: #DFBA6B;
    --clr-white: #FFFFFF;
    --clr-black: #050E1A;
    --clr-gray-100: #F8F9FA;
    --clr-gray-200: #E9ECEF;
    --clr-gray-600: #6C757D;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Animations & Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Layout */
    --container-width: 1280px;
    --padding-section: 80px 0;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-gray-100); /* Changed base bg for contrast */
    color: var(--clr-black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography Utilities */
.text-gold { color: var(--clr-gold); }
.text-navy { color: var(--clr-navy); }
.text-white { color: var(--clr-white); }
.text-center { text-align: center; }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--padding-section);
}

.section-bg-light { background-color: var(--clr-gray-100); }
.section-bg-white { background-color: var(--clr-white); }
.section-bg-navy { background-color: var(--clr-navy); color: var(--clr-white); }
.section-bg-navy h2, .section-bg-navy h3 { color: var(--clr-white); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 30px; /* More rounded as in mockup */
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: var(--font-heading);
}

.btn i { margin-left: 8px; font-size: 0.9em; }
.btn-icon-left i { margin-left: 0; margin-right: 8px; }

.btn-primary {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: #050e1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(9, 26, 47, 0.2);
}

.btn-gold {
    background-color: var(--clr-gold);
    color: var(--clr-white);
}

.btn-gold:hover {
    background-color: var(--clr-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(205, 154, 43, 0.3);
}

.btn-outline-white {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    border: 1px solid var(--clr-white);
}

.btn-outline-white:hover {
    background-color: var(--clr-white);
    color: var(--clr-navy);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--clr-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

/* Optional line before/after subtitle as seen in mockup */
.section-subtitle-lined {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subtitle-lined::before,
.section-subtitle-lined::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: var(--clr-gray-200);
}

.section-title {
    font-size: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Overlapping utilities */
.overlap-top {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --padding-section: 60px 0;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .overlap-top {
        margin-top: -30px;
    }
    .section-subtitle-lined::before,
    .section-subtitle-lined::after {
        width: 30px;
    }
}

/* ==========================================================================
   Visa & Immigration Section (Moved to component)
   ========================================================================== */
