/* ============================================================
   RENEW EMPIRE - Corporate Website Stylesheet
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --primary: #0a0a0a;
    --primary-light: #1a1a1a;
    --secondary: #fa050f;
    --accent-orange: #c8854a;
    --accent-gold: #c8854a;
    --white: #ffffff;
    --light: #f4f4f4;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --dark: #000000;
    --text: #333333;
    --text-light: #777777;
    --fight: #fa050f;
    --entertainment: #0e99f9;
    --hotels: #c8854a;
    --energy: #3ac50d;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Bar --- */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i, .top-bar-right i {
    margin-right: 6px;
    color: var(--accent-orange);
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    margin-left: 15px;
    font-size: 0.85rem;
}

.top-bar-right a:hover { color: var(--accent-orange); }

/* --- Navbar --- */
.navbar {
    background: var(--primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img { height: 45px; width: auto; }

.logo-renew { color: var(--accent-orange); }
.logo-empire { color: var(--white); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a {
    color: rgba(255,255,255,0.85);
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--white);
    background: rgba(250,5,15,0.2);
}

.nav-menu > li > a.active { background: var(--secondary); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px;
    z-index: 100;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.9rem;
    border-radius: 6px;
}

.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--secondary);
}

.dropdown-menu li a i { width: 20px; text-align: center; color: var(--secondary); }

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- Hero Section --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250,5,15,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,133,74,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(250,5,15,0.2);
    color: var(--accent-orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(250,5,15,0.3);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span { color: var(--accent-orange); }

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--accent-orange));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250,5,15,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover { background: var(--primary-light); }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

.btn-fight { background: var(--fight); color: var(--white); }
.btn-entertainment { background: var(--entertainment); color: var(--white); }
.btn-hotels { background: var(--hotels); color: var(--white); }
.btn-energy { background: var(--energy); color: var(--white); }

/* --- Section Styles --- */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .overline {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* --- Division Cards (Homepage) --- */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.division-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.division-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.division-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.division-card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    z-index: 2;
}

.division-card-body {
    padding: 25px;
}

.division-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.division-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.division-card-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.division-card-link:hover { gap: 10px; }

/* --- News Cards --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-card-body {
    padding: 25px;
}

.news-card-date {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.news-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.news-card-body h3 a:hover { color: var(--secondary); }

.news-card-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Stats Bar --- */
.stats-bar {
    background: linear-gradient(135deg, var(--secondary), var(--accent-orange));
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(250,5,15,0.1)"/></svg>') repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* --- Page Banner --- */
.page-banner {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a { color: var(--accent-orange); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* --- Division Slider --- */
.division-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; }

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.slide-content {
    max-width: 600px;
    color: var(--white);
}

.slide-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--accent-orange);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover { background: var(--secondary); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* --- Event Cards --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.event-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius);
    text-align: center;
    line-height: 1.2;
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.event-date-badge .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-card-body {
    padding: 25px;
}

.event-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.event-meta span i { margin-right: 6px; width: 16px; }

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.event-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
}

.event-price small {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

/* --- Hotel Cards --- */
.hotel-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hotel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.hotel-card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hotel-stars {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.hotel-card-body { padding: 25px; }
.hotel-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }

.hotel-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.hotel-location i { margin-right: 5px; color: var(--hotels); }

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.hotel-amenity {
    background: var(--light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.room-price {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--hotels);
}

.room-price small {
    font-weight: 400;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* --- Room Cards --- */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
}

.room-card-body { padding: 20px; }
.room-card-body h4 { font-size: 1.1rem; margin-bottom: 8px; }

.room-capacity {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.room-amenities span {
    background: var(--light);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    color: var(--text-light);
}

/* --- Product Cards --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover { transform: translateY(-5px); }

.product-card-img {
    height: 200px;
    background: var(--light);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img i { font-size: 3rem; color: var(--gray-light); }

.product-card-body { padding: 20px; }
.product-card-body .category {
    color: var(--energy);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.product-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.product-card-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 15px; }

.product-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--energy);
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--energy);
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--energy), #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }

/* --- Forms --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(250,5,15,0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

textarea.form-control { min-height: 120px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

/* --- Booking Summary --- */
.booking-summary {
    background: var(--light);
    border-radius: var(--radius);
    padding: 25px;
    margin-top: 25px;
}

.booking-summary h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.summary-total {
    border-top: 2px solid var(--secondary);
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 800;
    font-size: 1.1rem;
}

/* --- Countdown --- */
.countdown {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.countdown-item {
    background: var(--primary);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    text-align: center;
    min-width: 50px;
}

.countdown-item .number {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

.countdown-item .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.7;
}

/* --- Career Cards --- */
.career-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
    margin-bottom: 20px;
}

.career-card:hover { box-shadow: var(--shadow-lg); }

.career-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

.career-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.career-meta span i { margin-right: 5px; color: var(--secondary); }

.career-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 15px; }

.career-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.salary-range {
    font-weight: 700;
    color: var(--secondary);
}

/* --- Media Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 220px;
    background: var(--light);
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,46,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a, .pagination span {
    padding: 10px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--gray-light);
    color: var(--text);
}

.pagination a:hover { border-color: var(--secondary); color: var(--secondary); }
.pagination .active { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

/* --- About Page --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image i { font-size: 5rem; color: rgba(255,255,255,0.3); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
}

.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--text-light); }

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.85rem; color: var(--text-light); }

/* --- Success Message --- */
.success-page {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--energy), #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2.5rem;
}

.success-page h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-page p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.booking-ref {
    background: var(--light);
    padding: 15px 30px;
    border-radius: var(--radius);
    display: inline-block;
    margin: 20px 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 2px;
}

/* --- Alerts --- */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* --- Filter Bar --- */
.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 22px;
    border: 2px solid var(--gray-light);
    border-radius: 30px;
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* --- Search Bar --- */
.search-bar {
    display: flex;
    max-width: 500px;
    margin: 0 auto 30px;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--gray-light);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.95rem;
    font-family: var(--font);
}

.search-bar input:focus { outline: none; border-color: var(--secondary); }

.search-bar button {
    padding: 12px 24px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-size: 1rem;
}

/* --- Misc --- */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.mb-15 { margin-bottom: 15px; }

.detail-content { max-width: 800px; margin: 0 auto; }
.detail-content h2 { font-size: 1.5rem; margin: 25px 0 15px; }
.detail-content p { color: var(--text-light); margin-bottom: 15px; line-height: 1.7; }
.detail-content ul { margin: 10px 0 20px 20px; list-style: disc; }
.detail-content ul li { color: var(--text-light); margin-bottom: 8px; font-size: 0.95rem; }

.division-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.division-about .content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
}

.division-about .content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.division-about-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.division-about-centered h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
}
.division-about-centered p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-open { background: #d4edda; color: #155724; }
.tag-closed { background: #f8d7da; color: #721c24; }

.social-share {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.social-share .facebook { background: #1877f2; }
.social-share .twitter { background: #1da1f2; }
.social-share .linkedin { background: #0077b5; }
.social-share .whatsapp { background: #25d366; }

/* Map placeholder */
.map-placeholder {
    height: 300px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-top: 30px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .divisions-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .division-about { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .navbar .container { height: 60px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateX(100%);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.active { transform: translateX(0); }

    .nav-menu > li > a { padding: 14px 20px; font-size: 1rem; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        margin-top: 5px;
        display: none;
    }

    .dropdown.active .dropdown-menu { display: block; }
    .dropdown-menu li a { color: rgba(255,255,255,0.8); }
    .dropdown-menu li a:hover { background: rgba(255,255,255,0.1); }

    .hero { min-height: 70vh; padding: 40px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }

    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.8rem; }

    .divisions-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }

    .page-banner { padding: 70px 0 40px; }
    .page-banner h1 { font-size: 2rem; }

    .division-slider { height: 350px; }
    .slide-content h2 { font-size: 1.8rem; }
    .slider-arrow { display: none; }

    .form-card { padding: 25px; }

}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .stat-item h3 { font-size: 2rem; }
    .countdown { flex-wrap: wrap; }
    .values-grid { grid-template-columns: 1fr; }
}

/* --- Footer Styles --- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    overflow-x: hidden;
}

.footer-top { padding: 60px 0 40px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-social a:hover { background: var(--secondary); }

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-orange);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--accent-orange);
    margin-top: 3px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* --- Footer Responsive --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-contact li {
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    .footer-social {
        flex-wrap: wrap;
    }
}

/* --- Hero Slider --- */
.hero-slider { background: var(--dark); }
.hero-slides {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.hero-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--accent-orange); transform: scale(1.2); }

/* --- Division About Rows --- */
.division-about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.division-about-row.reversed { direction: rtl; }
.division-about-row.reversed > * { direction: ltr; }
.division-about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
}
.division-about-text h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.division-about-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .division-about-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .division-about-row.reversed { direction: ltr; }
    .division-about-img { height: 250px; }
}

/* --- Media Events Page --- */
.media-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.event-media-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.event-media-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.event-media-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.event-media-card-img .event-tag {
    position: absolute;
    top: 12px; left: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.event-tag.current { background: var(--energy); color: var(--white); }
.event-tag.past { background: var(--gray); color: var(--white); }
.event-media-card-img .event-division {
    position: absolute;
    top: 12px; right: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
}
.event-media-card-body {
    padding: 20px;
}
.event-media-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.event-media-card-body .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}
.event-media-card-body .event-meta i { margin-right: 4px; }
.event-media-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .media-events-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .media-events-grid { grid-template-columns: repeat(2, 1fr); }
}
