/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --gold: #D4AF37;
    --blue: #2563EB;
    --charcoal: #36454F;
    --white: #FFFFFF;
    --green: #10B981;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Cookie Consent Banner
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.btn-accept {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-accept:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
}

.logo-img {
    width: 45px;
    height: 45px;
}

.logo-text {
    background: linear-gradient(135deg, var(--gold), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--charcoal) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(212, 175, 55, 0.03) 10px,
            rgba(212, 175, 55, 0.03) 20px
        );
    animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
    0% { transform: translateX(0); }
    100% { transform: translateX(28.28px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-timeline {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.timeline-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid var(--gold);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.timeline-item:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-primary);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-submit {
    background: var(--blue);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--green);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* ===================================
   Content Cards
   =================================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.content-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--charcoal);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Timeline
   =================================== */
.timeline-section {
    background: var(--light-gray);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--blue));
    transform: translateX(-50%);
}

.timeline-event {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-event:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--blue);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-year {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: var(--blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Features Grid
   =================================== */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    border-radius: 50%;
    color: var(--white);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Statistics
   =================================== */
.stats-section {
    background: linear-gradient(135deg, var(--charcoal), var(--blue));
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
}

.stats-section .section-title::after {
    background: var(--gold);
}

.stats-section .section-description {
    color: rgba(255,255,255,0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--light-gray);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.cta-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--blue), var(--charcoal));
    border-radius: 20px;
    color: var(--white);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   Forms
   =================================== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form,
.contact-form-main,
.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
    font-family: var(--font-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    font-size: 0.95rem;
    color: #666;
}

.checkbox-label a {
    color: var(--blue);
    text-decoration: underline;
}

/* ===================================
   Page Hero (Internal Pages)
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--charcoal), var(--blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-family: var(--font-secondary);
}

/* ===================================
   History Page Styles
   =================================== */
.history-section {
    padding: 60px 0;
}

.history-section.alt {
    background: var(--light-gray);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.history-content.reverse {
    direction: rtl;
}

.history-content.reverse > * {
    direction: ltr;
}

.history-text {
    padding: 20px 0;
}

.decade-label {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.history-text h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.history-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.history-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.history-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-section {
    background: var(--white);
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.modern-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.modern-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left-color: var(--blue);
}

.modern-card h3 {
    color: var(--charcoal);
    margin-bottom: 15px;
}

.modern-card p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Technology Page Styles
   =================================== */
.tech-section {
    padding: 60px 0;
}

.tech-section.alt {
    background: var(--light-gray);
}

.tech-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-header {
    text-align: center;
    margin-bottom: 40px;
}

.tech-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    border-radius: 50%;
    color: var(--white);
}

.tech-icon-large svg {
    width: 50px;
    height: 50px;
}

.tech-header h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
}

.tech-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.tech-content.reverse .tech-details {
    direction: rtl;
}

.tech-content.reverse .tech-details > * {
    direction: ltr;
}

.tech-text h3 {
    color: var(--blue);
    font-size: 1.8rem;
    margin: 25px 0 15px;
}

.tech-text h4 {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

.tech-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tech-text ul {
    list-style: disc;
    margin-left: 25px;
    color: #666;
}

.tech-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.tech-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Comparison Table */
.comparison-section {
    background: var(--light-gray);
}

.comparison-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    border-bottom: 1px solid var(--medium-gray);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row.header {
    background: var(--charcoal);
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-primary);
}

.comparison-cell {
    padding: 20px;
    text-align: center;
    border-right: 1px solid var(--medium-gray);
}

.comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:not(.header):hover {
    background: var(--light-gray);
}

/* ===================================
   Security Page Styles
   =================================== */
.security-overview {
    background: var(--white);
}

.security-layers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.security-layer {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.security-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
}

.security-layer:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.layer-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 50%;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
}

.security-layer h3 {
    color: var(--charcoal);
    margin-bottom: 15px;
}

.security-layer p {
    color: #666;
    line-height: 1.7;
}

/* Fraud Section */
.fraud-section {
    background: var(--light-gray);
}

.fraud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.fraud-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.fraud-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.fraud-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    color: var(--white);
}

.fraud-icon svg {
    width: 35px;
    height: 35px;
}

.fraud-card h3 {
    color: var(--charcoal);
    margin-bottom: 15px;
}

.fraud-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.fraud-prevention {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--green);
    margin-top: 15px;
}

.fraud-prevention strong {
    color: var(--green);
    font-family: var(--font-primary);
}

/* Features Detail Section */
.features-detail-section {
    background: var(--white);
}

.features-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-detail-card.reverse {
    direction: rtl;
}

.feature-detail-card.reverse > * {
    direction: ltr;
}

.feature-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.feature-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-detail-content h3 {
    color: var(--blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-detail-content ul {
    list-style: none;
    margin-top: 20px;
}

.feature-detail-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.feature-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Best Practices Section */
.best-practices-section {
    background: var(--light-gray);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.practice-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    padding-top: 70px;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.practice-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 50%;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.practice-card h3 {
    color: var(--charcoal);
    margin-bottom: 15px;
}

.practice-card p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Future Page Styles
   =================================== */
.future-intro {
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.intro-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Innovations Section */
.innovations-section {
    background: var(--light-gray);
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.innovation-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-align: center;
}

.innovation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.innovation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--green));
    border-radius: 50%;
    color: var(--white);
}

.innovation-icon svg {
    width: 40px;
    height: 40px;
}

.innovation-card h3 {
    color: var(--charcoal);
    margin-bottom: 15px;
}

.innovation-card p {
    color: #666;
    line-height: 1.7;
}

/* Future Tech Section */
.future-tech-section {
    background: var(--white);
}

.tech-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.tech-detail.reverse {
    direction: rtl;
}

.tech-detail.reverse > * {
    direction: ltr;
}

.tech-detail-content h2 {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 20px;
}

.tech-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tech-benefits {
    margin-top: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-weight: 900;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: #666;
    line-height: 1.6;
}

.tech-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.tech-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sustainability Section */
.sustainability-section {
    background: var(--light-gray);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.sustainability-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.sustainability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sustainability-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sustainability-card:hover .sustainability-image img {
    transform: scale(1.1);
}

.sustainability-content {
    padding: 25px;
}

.sustainability-content h3 {
    color: var(--green);
    margin-bottom: 15px;
}

.sustainability-content p {
    color: #666;
    line-height: 1.7;
}

/* Future Timeline */
.future-timeline-section {
    background: var(--white);
}

.future-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.future-timeline-item {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid var(--gold);
    transition: var(--transition);
}

.future-timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left-color: var(--blue);
}

.future-year {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.future-content h3 {
    color: var(--charcoal);
    margin-bottom: 15px;
}

.future-content ul {
    list-style: none;
    margin-top: 15px;
}

.future-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.7;
}

.future-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
}

/* Challenges Section */
.challenges-section {
    background: var(--light-gray);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.challenge-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #ef4444;
    transition: var(--transition);
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.challenge-card h3 {
    color: #ef4444;
    margin-bottom: 15px;
}

.challenge-card p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Gallery Page Styles
   =================================== */
.gallery-intro {
    background: var(--white);
    padding: 40px 0;
}

.intro-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-box h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.intro-box p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Gallery Filter */
.gallery-section {
    background: var(--light-gray);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--medium-gray);
    padding: 12px 30px;
    border-radius: 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15);
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h3 {
    color: var(--charcoal);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.gallery-caption p {
    color: #666;
    line-height: 1.6;
}

/* 3D Gallery Section */
.gallery-3d-section {
    background: var(--white);
}

.gallery-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.gallery-3d-card {
    text-align: center;
}

.card-3d-container {
    perspective: 1000px;
    margin-bottom: 20px;
}

.card-3d {
    width: 280px;
    height: 180px;
    margin: 0 auto;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    cursor: pointer;
}

.gallery-3d-card:hover .card-3d {
    transform: rotateY(10deg) rotateX(5deg);
}

.card-3d-front {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue), var(--charcoal));
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    color: var(--white);
}

.card-3d.metal .card-3d-front {
    background: linear-gradient(135deg, #c0c0c0, #808080);
}

.card-3d.digital .card-3d-front {
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.card-3d.eco .card-3d-front {
    background: linear-gradient(135deg, var(--green), #059669);
}

.card-3d.biometric .card-3d-front {
    background: linear-gradient(135deg, var(--gold), #b8860b);
}

.card-3d.transparent .card-3d-front {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.card-chip {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    border-radius: 5px;
    margin-bottom: 15px;
}

.card-wave {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.card-number {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 20px 0;
}

.card-holder {
    font-size: 0.9rem;
    margin-top: 10px;
    text-transform: uppercase;
}

.card-expiry {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.85rem;
}

.digital-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--white);
}

.eco-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--green);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.fingerprint-sensor {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: 3px solid var(--white);
    border-radius: 50%;
    opacity: 0.7;
}

.gallery-3d-card h3 {
    color: var(--charcoal);
    margin-bottom: 10px;
}

.gallery-3d-card p {
    color: #666;
}

/* Evolution Comparison */
.evolution-comparison {
    background: var(--light-gray);
}

.comparison-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.comparison-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.comparison-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.comparison-image {
    width: 100%;
    height: 250px;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.contact-info > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    border-radius: 50%;
    color: var(--white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-text h3 {
    color: var(--charcoal);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-detail-text p {
    color: #666;
    line-height: 1.7;
}

.contact-image {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 30px;
}

/* Booking Section */
.booking-section {
    background: var(--light-gray);
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.booking-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Map Section */
.map-section {
    background: var(--white);
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.map-directions h3 {
    color: var(--charcoal);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.direction-item {
    margin-bottom: 25px;
}

.direction-item h4 {
    color: var(--blue);
    margin-bottom: 10px;
}

.direction-item p {
    color: #666;
    line-height: 1.7;
}

.map-placeholder {
    background: var(--light-gray);
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    text-align: center;
    color: var(--charcoal);
}

.map-overlay svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.map-overlay p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-item h3 {
    color: var(--blue);
    margin-bottom: 15px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   Legal Pages Styles
   =================================== */
.legal-section {
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    color: var(--charcoal);
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
}

.legal-block h3 {
    color: var(--blue);
    font-size: 1.5rem;
    margin: 25px 0 15px;
}

.legal-block h4 {
    color: var(--charcoal);
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.legal-block p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-block ul {
    list-style: disc;
    margin-left: 30px;
    color: #666;
}

.legal-block ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-block a {
    color: var(--blue);
    text-decoration: underline;
}

.legal-block a:hover {
    color: var(--gold);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .content-grid,
    .features-grid,
    .innovations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    .nav.active {
        transform: translateY(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--medium-gray);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    /* Grids */
    .content-grid,
    .features-grid,
    .stats-grid,
    .innovations-grid,
    .gallery-grid,
    .gallery-3d-grid,
    .sustainability-grid,
    .practices-grid,
    .challenges-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Two Column Layouts */
    .cta-content,
    .history-content,
    .tech-details,
    .feature-detail-card,
    .intro-content,
    .tech-detail,
    .contact-wrapper,
    .map-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .history-content.reverse,
    .tech-content.reverse .tech-details,
    .feature-detail-card.reverse,
    .tech-detail.reverse {
        direction: ltr;
    }
    
    /* Timeline */
    .timeline-line {
        left: 20px;
    }
    
    .timeline-event {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-event:nth-child(odd) {
        flex-direction: column;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Comparison Table */
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-row {
        min-width: 700px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-submit {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    
    .card-content,
    .feature-card,
    .security-layer,
    .fraud-card,
    .practice-card,
    .innovation-card,
    .sustainability-content,
    .challenge-card,
    .faq-item {
        padding: 20px;
    }
    
    .contact-form,
    .contact-form-main,
    .booking-form {
        padding: 25px;
    }
    
    .comparison-slider {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Animations & Utilities
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-in {
    animation: slideIn 0.6s ease;
}

/* Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .mobile-menu-toggle,
    .btn-primary,
    .btn-submit {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        page-break-inside: avoid;
    }
}


