/* ============================================
   LUXURY DESIGN - PREMIUM STYLE
   ============================================ */

:root {
    --primary-gold: #f7d822;
    --accent-gold: #c09142;
    --premium-gold: #ffd700;
    --primary-blue: #203cd9;
    --secondary-blue: #0a30ee;
    --dark-bg: #0a0e27;
    --light-bg: #f5f7fa;
    --text-dark: #1a1a2e;
    --text-light: #eaeaea;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.2);
    --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============ NAVBAR - PREMIUM ============ */
.navbar {
    position: relative; /* place navbar below the top banner */
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1rem 0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    width: 110px;
    height: 110px;
    filter: drop-shadow(0 4px 12px rgba(247, 216, 34, 0.25));
    transition: var(--transition);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 8px 20px rgba(247, 216, 34, 0.4)) brightness(1.15);
    transform: scale(1.08);
}

.logo-text {
    font-size: 3.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    transition: width 0.4s ease;
    border-radius: 3px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
    background: rgba(247, 216, 34, 0.1);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.lang-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(247, 216, 34, 0.25);
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.lang-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(247, 216, 34, 0.4);
}

.lang-btn:active {
    transform: translateY(-1px);
}

/* ============ BURGER MENU ============ */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 120px;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-left: 3px solid transparent;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--primary-gold);
    background: rgba(247, 216, 34, 0.1);
    border-left-color: var(--primary-gold);
}

/* ============ HERO SECTION - PREMIUM ============ */
/* remove top offset — navbar is no longer fixed */
body > :not(.navbar) {
    margin-top: 0;
}

.hero {
    /* full screen carousel without background image */
    background: transparent;
    color: var(--white);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero .carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}

.hero .carousel-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: blur(3px);
}

.hero .carousel-item:hover img {
    filter: blur(3px);
}

.hero .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,14,39,0.55) 0%, rgba(32,60,217,0.12) 50%);
    z-index: 1;
}

.hero .carousel-prev,
.hero .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
}

.hero .carousel-prev:hover,
.hero .carousel-next:hover {
    background: rgba(255,255,255,1);
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.1);
}

.hero .carousel-prev { left: 20px; }
.hero .carousel-next { right: 20px; }

.hero-content {
    position: absolute;
    z-index: 3;
    max-width: 950px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 2rem;
}
/* Top banner that sits above the navbar */
.top-banner {
    width: 100%;
    display: block;
    overflow: hidden;
}
.top-banner img {
    width: 100%;
    height: auto;
    display: block;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(247, 216, 34, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(192, 145, 66, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(32, 60, 217, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 20s ease infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 216, 34, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}



.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.15;
    animation: slideInDown 1.2s ease 0.3s both;
    background: linear-gradient(135deg, var(--white) 0%, rgba(247, 216, 34, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    font-family: 'Trebuchet MS', sans-serif;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.95;
    opacity: 0.95;
    animation: slideInUp 1.2s ease 0.5s both;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1.2s ease 0.7s both;
}

/* ============ BUTTONS - PREMIUM ============ */
.btn {
    display: inline-block;
    padding: 16px 42px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.7px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.btn:hover::before {
    width: 350px;
    height: 350px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    box-shadow: 0 12px 35px rgba(247, 216, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(247, 216, 34, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2.5px solid var(--primary-gold);
    box-shadow: 0 12px 35px rgba(247, 216, 34, 0.15);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    box-shadow: 0 18px 50px rgba(247, 216, 34, 0.35);
}

/* ============ HIGHLIGHTS SECTION ============ */
.highlights {
    padding: 120px 30px;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(247, 216, 34, 0.03) 100%);
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 216, 34, 0.2), transparent);
}

.highlights h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 5rem;
    color: var(--primary-blue);
    font-weight: 900;
    letter-spacing: -0.7px;
    position: relative;
    font-family: 'Trebuchet MS', sans-serif;
}

.highlights h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    margin: 1.2rem auto 0;
    border-radius: 3px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.highlight-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    border-top: 5px solid var(--primary-gold);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 216, 34, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-card i {
    display: inline-block;
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.8rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.highlight-card:hover i {
    transform: scale(1.25) rotate(8deg);
    color: var(--accent-gold);
}

.highlight-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 1rem 0 0.75rem 0;
    position: relative;
    z-index: 1;
}

.highlight-card .card-link {
    display: inline-block;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.highlight-card .card-link:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.highlight-card .card-link {
    display: inline-block;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.highlight-card .card-link:hover {
    background: var(--primary-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, rgba(32, 60, 217, 0.35) 50%, rgba(10, 48, 238, 0.25) 100%);
    color: var(--white);
    padding: 100px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(247, 216, 34, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(192, 145, 66, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-family: 'Trebuchet MS', sans-serif;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 120px 30px;
}

.about-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.about-intro h2 {
    font-size: 3.2rem;
    color: var(--primary-blue);
    margin-bottom: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.7px;
    position: relative;
    font-family: 'Trebuchet MS', sans-serif;
}

.about-intro h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    margin: 1.2rem auto 0;
    border-radius: 3px;
}

.about-intro p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    line-height: 2;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.about-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(247, 216, 34, 0.05) 100%);
    padding: 3.5rem 3rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-gold);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -50%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(247, 216, 34, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: top 0.6s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.about-card:hover::before {
    top: -10%;
    right: -20%;
}

.about-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.4rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.about-card p {
    color: var(--text-dark);
    line-height: 1.9;
    font-weight: 300;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

/* ============ VALUES SECTION ============ */
.values-section {
    margin-bottom: 6rem;
}

.values-section h2 {
    text-align: center;
    font-size: 3.2rem;
    color: var(--primary-blue);
    margin-bottom: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.7px;
    position: relative;
    font-family: 'Trebuchet MS', sans-serif;
}

.values-section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    margin: 1.2rem auto 0;
    border-radius: 3px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
}

.value-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.value-item:hover .value-icon {
    transform: scale(1.25) rotate(-15deg);
    color: var(--accent-gold);
}

.value-item h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

/* ============ WHY US SECTION ============ */
.why-us {
    background: linear-gradient(135deg, var(--white) 0%, rgba(247, 216, 34, 0.03) 100%);
    padding: 4.5rem 3.5rem;
    border-radius: 15px;
    margin-top: 6rem;
    border-top: 5px solid var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.why-us h2 {
    text-align: center;
    font-size: 3.2rem;
    color: var(--primary-blue);
    margin-bottom: 4rem;
    font-weight: 900;
    letter-spacing: -0.7px;
    position: relative;
    font-family: 'Trebuchet MS', sans-serif;
}

.why-us h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    margin: 1.2rem auto 0;
    border-radius: 3px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.why-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 12px;
    background: transparent;
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(247, 216, 34, 0.08);
    padding: 2rem 2.5rem;
}

.circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-bg);
    border-radius: 50%;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(247, 216, 34, 0.3);
    transition: var(--transition);
    font-size: 1.2rem;
}

.why-item:hover .circle {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(247, 216, 34, 0.4);
}

.why-item p {
    color: var(--text-dark);
    line-height: 1.9;
    padding-top: 0.5rem;
    font-weight: 300;
    font-size: 1.05rem;
}

/* ============ PRODUCTS SECTION ============ */
.products-section {
    padding: 120px 30px;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(247, 216, 34, 0.03) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-card {
    background: var(--white);
    padding: 3.5rem 2.8rem;
    border-radius: 15px;
    border-top: 5px solid var(--primary-gold);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 216, 34, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.product-card:hover {
    transform: translateY(-18px);
    box-shadow: var(--shadow-xl);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.product-icon {
    font-size: 4.5rem;
    color: var(--premium-gold);
    margin-bottom: 1.8rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.product-card:hover .product-icon {
    color: var(--primary-gold);
    transform: scale(1.28) rotate(12deg);
}

.product-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
    min-height: 3rem;
    text-shadow: 0 2px 4px rgba(32, 60, 217, 0.1);
}

.product-card p {
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    min-height: 2.4rem;
}

.features {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.features li {
    color: var(--text-dark);
    margin: 1.2rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 300;
}

.features li i {
    color: var(--premium-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 120px 30px;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(247, 216, 34, 0.03) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 900;
    position: relative;
    letter-spacing: -0.5px;
}

.contact-info h2::after,
.contact-form-wrapper h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    margin-top: 1rem;
    border-radius: 2px;
}

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(247, 216, 34, 0.15);
    transition: var(--transition);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item:hover {
    padding-left: 0.8rem;
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.info-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-weight: 800;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-dark);
    font-weight: 300;
    font-size: 1rem;
}

.info-content a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.info-content a:hover {
    color: var(--accent-gold);
}

/* ============ CONTACT FORM ============ */
.contact-form {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-gold);
}

.form-group {
    margin-bottom: 2.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.9rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-bg);
    color: var(--text-dark);
    font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(26, 26, 46, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(247, 216, 34, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

/* ============ MAP SECTION ============ */
.map-section {
    padding: 120px 30px;
    text-align: center;
}

.map-section h2 {
    color: var(--primary-blue);
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.7px;
    position: relative;
    font-family: 'Trebuchet MS', sans-serif;
}

.map-section h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    margin: 1.2rem auto 0;
    border-radius: 3px;
}

.map-section p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 300;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary-gold);
}

/* Homepage image placeholders */
.home-image {
    padding: 40px 0;
    background: transparent;
}
.home-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.home-image.under-highlights { padding-top: 40px; padding-bottom: 40px; }
.home-image.above-footer { padding: 0; }
.home-image.above-footer img { border-radius: 12px; display: block; width: 100%; height: auto; }

/* Gallery styles for products page */
.storage-section .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.storage-section .gallery figure {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.storage-section .gallery img { width: 100%; height: 160px; object-fit: cover; border-radius: 6px; }
.storage-section .gallery figcaption { margin-top: 0.6rem; font-weight: 700; color: var(--primary-blue); }

/* Import overview grid (top of services page) */
.import-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    align-items: start;
    margin: 1.6rem 0 2.4rem 0;
}
.import-item { text-align: center; background: var(--white); padding: 0.6rem; border-radius: 8px; box-shadow: var(--shadow-sm); }
.import-img { width: 100%; height: 120px; object-fit: cover; border-radius: 6px; display: block; cursor: pointer; }
.import-item figcaption { margin-top: 0.6rem; font-weight: 800; color: var(--primary-blue); font-size: 0.95rem; }

.silos-features { list-style: none; padding-left: 0; margin-bottom: 1rem; }
.silos-features li { margin: 0.4rem 0; padding-left: 1rem; position: relative; }
.silos-features li::before { content: '•'; position: absolute; left: 0; color: var(--primary-gold); font-weight: 900; }

/* Generic carousel styles used across site */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: inherit;
}
.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
}

/* Carousel item positioning based on data-index - RTL Direction */
html[dir="rtl"] .carousel-track[data-index="0"] { transform: translateX(0); }
html[dir="rtl"] .carousel-track[data-index="1"] { transform: translateX(100%); }
html[dir="rtl"] .carousel-track[data-index="2"] { transform: translateX(200%); }
html[dir="rtl"] .carousel-track[data-index="3"] { transform: translateX(300%); }
html[dir="rtl"] .carousel-track[data-index="4"] { transform: translateX(400%); }
html[dir="rtl"] .carousel-track[data-index="5"] { transform: translateX(500%); }

/* LTR Direction (fallback) */
html[dir="ltr"] .carousel-track[data-index="0"] { transform: translateX(0); }
html[dir="ltr"] .carousel-track[data-index="1"] { transform: translateX(-100%); }
html[dir="ltr"] .carousel-track[data-index="2"] { transform: translateX(-200%); }
html[dir="ltr"] .carousel-track[data-index="3"] { transform: translateX(-300%); }
html[dir="ltr"] .carousel-track[data-index="4"] { transform: translateX(-400%); }
html[dir="ltr"] .carousel-track[data-index="5"] { transform: translateX(-500%); }

.carousel-item {
    flex: 0 0 100%;
    position: relative;
}
.carousel-item img { 
    display: block; 
    width: 100%; 
    height: auto; 
    object-fit: contain; 
    background: var(--light-bg); 
    transition: filter 0.3s ease;
}

.carousel-item:hover img {
    filter: blur(4px);
}
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}
.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255,255,255,1);
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.1);
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

/* overlay that appears on hover */
.carousel-overlay {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 18px;
    width: calc(100% - 48px);
    /* very dark background with good contrast for white text */
    background: rgba(10,14,39,0.92);
    color: var(--white);
    padding: 14px 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.25s ease, max-height 0.3s ease;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    max-height: 100px;
    overflow-y: auto;
}
.carousel-item:hover .carousel-overlay,
.carousel-item:focus-within .carousel-overlay {
    opacity: 1;
    pointer-events: auto;
    max-height: 400px;
}
.carousel-overlay h3 { 
    margin: 0; 
    font-size: 1.5rem; 
    color: var(--primary-gold); 
    font-weight: 800;
    letter-spacing: 0.3px;
}
.carousel-overlay .features { 
    list-style: disc; 
    padding-right: 1rem; 
    margin: 12px 0 0 0; 
    color: var(--white); 
    display: none; 
    direction: rtl; 
    list-style-position: inside;
    font-size: 0.9rem;
    line-height: 1.6;
}
.carousel-item:hover .carousel-overlay .features { display: block; }
.carousel-overlay .features li { margin: 6px 0; font-weight: 400; color: var(--white); }

.carousel-overlay .details-desc {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    display: none;
}
.carousel-item:hover .carousel-overlay .details-desc {
    display: block;
}

/* Make modal responsive so content doesn't overflow off-screen */
.image-modal .modal-content {
    max-height: 90vh;
    overflow: auto;
    padding: 1rem;
}
.image-modal img { max-width: 100%; height: auto; display: block; margin-bottom: 0.8rem; }
.modal-close { z-index: 2100; }

/* Fix bullet position for RTL lists outside overlays too */
.silos-features, .features { 
    direction: rtl; 
    list-style: none;
    padding-right: 0; 
    padding-left: 0;
    margin: 0;
}

/* small adjustments for specific carousels */
/* import and storage carousel image heights removed - now using full-screen */
.import-carousel .carousel-item img { height: auto; max-height: 600px; object-fit: contain; background: var(--light-bg); }
.storage-carousel .carousel-item img { height: auto; max-height: 600px; object-fit: contain; background: var(--light-bg); }
.sugar-carousel .carousel-item img { height: auto; max-height: 600px; object-fit: contain; background: var(--light-bg); }
.silos-carousel .carousel-item img { height: auto; max-height: 600px; object-fit: contain; background: var(--light-bg); }

@media (max-width: 768px) {
    .home-main-carousel .carousel-item img { height: 200px; }
    .carousel-prev, .carousel-next { width: 36px; height: 36px; font-size: 18px; }
}

/* Image modal */
.image-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1.5rem;
}

.image-modal.active {
    display: flex;
}

.image-modal .modal-content {
    background: var(--white);
    max-width: 1000px;
    width: 100%;
    max-height: 95vh;
    overflow: auto;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}
.image-modal img { 
    width: 100%; 
    height: auto; 
    max-height: 65vh;
    object-fit: contain;
    border-radius: 8px; 
    margin-bottom: 1.2rem; 
    display: block;
}
.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
}
.modal-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 300;
}
.modal-close {
    position: absolute;
    right: 1.5rem; 
    top: 1rem;
    background: transparent; 
    border: none; 
    font-size: 2.4rem; 
    cursor: pointer; 
    color: var(--text-dark);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.modal-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.map-container iframe {
    border-radius: 15px;
    display: block;
    width: 100%;
    max-width: 100%;
}

/* ============ CTA SECTION ============ */
.cta {
    background: linear-gradient(135deg, rgba(10,14,39,0.55) 0%, rgba(32,60,217,0.12) 50%), url('../images/main-3.jpg');
    background-size: cover;
    background-position: center center;
    color: var(--white);
    padding: 100px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/main-3.jpg');
    background-size: cover;
    background-position: center center;
    filter: blur(3px);
    z-index: 0;
    pointer-events: none;
}

.cta > * {
    position: relative;
    z-index: 1;
}

/* ============ SERVICE CARDS (products.html) ============ */
.service-card {
    display: flex;
    gap: 1.6rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.8rem;
    border-radius: 12px;
    border-top: 5px solid var(--primary-gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-media {
    flex: 0 0 220px;
}

.service-image {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.service-body {
    flex: 1 1 auto;
}

.service-body h2 {
    margin-top: 0;
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.service-body p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 300;
}

.service-body .features { margin-top: 0.8rem; }

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(247, 216, 34, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(192, 145, 66, 0.08) 0%, transparent 45%);
    pointer-events: none;
}

.cta h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-weight: 900;
    font-family: 'Trebuchet MS', sans-serif;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    font-weight: 300;
    line-height: 1.8;
}

/* ============ STORAGE SECTION ============ */
.storage-subsection h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid rgba(247, 216, 34, 0.3);
    padding-bottom: 0.5rem;
}

.storage-subsection h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
}

.silos-features {
    list-style: none;
    padding-right: 1rem;
    margin: 1rem 0;
}

.silos-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.silos-features li:before {
    content: "✓ ";
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ============ STORAGE SECTION ============ */
.storage-subsection h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid rgba(247, 216, 34, 0.3);
    padding-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.3px;
}

.storage-subsection h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem 0;
}

.silos-features {
    list-style: none;
    padding-right: 1rem;
    margin: 1rem 0;
}

.silos-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.silos-features li:before {
    content: "✓ ";
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ============ FOOTER ============ */
footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(13, 13, 13, 0.98) 100%);
    color: var(--white);
    padding: 70px 30px 35px;
    margin: 0; /* remove any margin around footer as requested */
    border-top: 1px solid rgba(247, 216, 34, 0.12);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 2;
    margin-bottom: 0.9rem;
    font-weight: 300;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    font-size: 0.95rem;
}

/* ============ ANIMATIONS ============ */
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    .hero {min-height: 70vh; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .highlights h2, .about-intro h2, .values-section h2 { font-size: 2.5rem; }
    .highlights-grid, .products-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .service-card { flex-direction: column; gap: 1rem; }
    .service-media { flex: 0 0 auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    body > :not(.navbar) { margin-top: 0; }
    .navbar { padding: 0.6rem 0; }
    .navbar-content { gap: 1rem; }
    .nav-links { display: none; }
    .burger-menu { display: flex; }
    .logo-img { width: 80px; height: 80px; }
    .logo-text { display: block; font-size: 1.5rem; }
    .hero { height: 60vh; }
    .hero .carousel-track { height: 60vh; }
    .hero .carousel-item { height: 60vh; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
    .btn { width: 100%; padding: 14px 28px; font-size: 0.9rem; }
    .highlights, .about-section, .products-section, .contact-section, .map-section { padding: 80px 15px; }
    .highlights h2, .about-intro h2, .values-section h2, .page-header h1, .cta h2 { font-size: 2rem; }
    .highlight-card, .product-card, .about-card, .value-item { padding: 2rem 1.5rem; }
    .highlights-grid, .products-grid, .values-grid, .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-card { flex-direction: column; }
    .service-media { width: 100%; }
    .service-image { width: 100%; height: 220px; }
    .contact-info h2, .contact-form-wrapper h2 { font-size: 1.8rem; }
    .contact-form { padding: 2rem; }
    .page-header { padding: 60px 15px; }
    .map-container iframe { height: 300px; }
}

@media (max-width: 480px) {
    .logo-img { width: 100px; height: auto; }
    .nav-links { gap: 0.5rem; }
    .hero { height: 50vh; }
    .hero .carousel-track { height: 50vh; }
    .hero .carousel-item { height: 50vh; }
    .hero-title { font-size: 1.5rem; }
    .hero-subtitle { font-size: 0.85rem; }
    .highlights, .about-section, .products-section, .contact-section, .map-section { padding: 60px 12px; }
    .highlights h2, .about-intro h2, .values-section h2, .page-header h1, .cta h2 { font-size: 1.6rem; }
    .highlight-card i, .product-icon, .value-icon { font-size: 2.8rem; }
    .highlight-card p, .product-card p { font-size: 0.9rem; }
    .contact-grid { gap: 2rem; }
    .info-item { flex-direction: column; gap: 1rem; }
    .container { padding: 0 15px; }
}