@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette - Logo Inspired */
    --primary: #C5A059;
    /* Elegant Gold */
    --primary-hover: #A68041;
    --secondary: #2C3E50;
    /* Dark Slate Blue/Grey from Logo text */
    --secondary-light: #34495E;
    --background: #FFFFFF;
    --background-alt: #F4F7F6;
    --text-main: #2C3E50;
    --text-muted: #7F8C8D;
    --white: #FFFFFF;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(13, 39, 83, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(13, 39, 83, 0.1), 0 2px 4px -1px rgba(13, 39, 83, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(13, 39, 83, 0.1), 0 4px 6px -2px rgba(13, 39, 83, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(13, 39, 83, 0.1), 0 10px 10px -5px rgba(13, 39, 83, 0.04);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* Base UI Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #FF4B91 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--background-alt);
}

.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-play-state: paused;
}

.animate-fadeInUp.visible {
    animation-play-state: running;
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-bounce-slow {
    animation: bounceSlow 4s ease-in-out infinite;
}

/* Utility Classes - Layout */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:items-end {
        align-items: flex-end;
    }

    .md\:hidden {
        display: none;
    }
}

@media (min-width: 1024px) {
    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:block {
        display: block;
    }

    .lg\:text-left {
        text-align: left;
    }

    .lg\:items-start {
        align-items: flex-start;
    }

    .lg\:text-7xl {
        font-size: 4.5rem;
    }

    .lg\:text-6xl {
        font-size: 3.75rem;
    }

    .lg\:p-24 {
        padding: 6rem;
    }
}

/* Spacing - Gap */
.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-16 {
    gap: 4rem;
}

/* Spacing - Margins */
.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Spacing - Padding */
.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-12 {
    padding: 3rem;
}

.p-24 {
    padding: 6rem;
}

.pt-5 {
    padding-top: 1.25rem;
}

.pt-12 {
    padding-top: 3rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-5 {
    padding-bottom: 1.25rem;
}

.pb-10 {
    padding-bottom: 2.5rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Typography */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-50 {
    z-index: 50;
}

.z-\[999\] {
    z-index: 999;
}

/* Others */
.overflow-hidden {
    overflow: hidden;
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(13, 39, 83, 0.25);
}

.rounded-xl {
    border-radius: 1rem;
}

.rounded-2xl {
    border-radius: 1.5rem;
}

.rounded-3xl {
    border-radius: 2rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-l-\[100px\] {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.border {
    border: 1px solid #e2e8f0;
}

.border-2 {
    border-width: 2px;
}

.border-8 {
    border-width: 8px;
}

.border-white {
    border-color: #ffffff;
}

.border-t {
    border-top: 1px solid #e2e8f0;
}

.border-b {
    border-bottom: 1px solid #e2e8f0;
}

.border-l {
    border-left: 1px solid #e2e8f0;
}

.border-y {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.border-slate-100 {
    border-color: #f1f5f9;
}

.border-slate-200 {
    border-color: #e2e8f0;
}

.border-slate-700 {
    border-color: #334155;
}

/* Typography Utilities */
.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-white {
    color: var(--white);
}

.text-slate-200 {
    color: #e2e8f0;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-500 {
    color: #64748b;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-900 {
    color: #0f172a;
}

/* Background Utilities */
.bg-white {
    background-color: var(--white);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-blue-500\/5 {
    background-color: rgba(59, 130, 246, 0.05);
}

.bg-primary\/5 {
    background-color: rgba(197, 160, 89, 0.05);
}

.bg-primary\/10 {
    background-color: rgba(197, 160, 89, 0.1);
}

.bg-white\/5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-transparent {
    background-color: transparent;
}

.bg-navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
}

.bg-secondary\/20 {
    background-color: rgba(44, 62, 80, 0.2);
}

.bg-secondary\/90 {
    background-color: rgba(44, 62, 80, 0.9);
}

/* Sizes & Dimensions */
.w-full {
    width: 100%;
}

.w-1\/2 {
    width: 50%;
}

.w-10 {
    width: 40px;
}

.w-12 {
    width: 48px;
}

.w-14 {
    width: 56px;
}

.w-16 {
    width: 64px;
}

.w-64 {
    width: 256px;
}

.w-80 {
    width: 320px;
}

.w-px {
    width: 1px;
}

.h-full {
    height: 100%;
}

.h-8 {
    height: 32px;
}

.h-10 {
    height: 40px;
}

.h-12 {
    height: 48px;
}

.h-14 {
    height: 56px;
}

.h-16 {
    height: 64px;
}

.h-64 {
    height: 256px;
}

.h-80 {
    height: 320px;
}

.h-px {
    height: 1px;
}

.h-\[450px\] {
    height: 450px;
}

.h-0 {
    height: 0;
}

.group:hover .group-hover\:h-auto {
    height: auto;
}

.aspect-\[4\/5\] {
    aspect-ratio: 4/5;
}

/* Rounded Corners Misc */
.rounded-\[2\.5rem\] {
    border-radius: 2.5rem;
}

.rounded-l-\[100px\] {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

/* Transitions & Transforms */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\:translate-y-\[-10px\] {
    transform: translateY(-10px);
}

.group:hover .group-hover\:translate-x-0 {
    transform: translateX(0);
}

.translate-x-\[-10px\] {
    transform: translateX(-10px);
}

/* Opacity Misc */
.opacity-0 {
    opacity: 0;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

.group:hover .group-hover\:opacity-90 {
    opacity: 0.9;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

/* Filters */
.blur-3xl {
    filter: blur(64px);
}

.grayscale {
    filter: grayscale(100%);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Images & Gradients */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-secondary {
    --tw-gradient-from: var(--secondary);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 62, 80, 0));
}

.via-secondary\/20 {
    --tw-gradient-stops: var(--tw-gradient-from), rgba(44, 62, 80, 0.2), var(--tw-gradient-to, rgba(44, 62, 80, 0));
}

.to-transparent {
    --tw-gradient-to: transparent;
}

/* Pointer Events */
.pointer-events-none {
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

/* Visibility */
.hidden {
    display: none;
}

.block {
    display: block;
}

/* Insets */
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-6 {
    top: 1.5rem;
}

.left-6 {
    left: 1.5rem;
}

.-bottom-8 {
    bottom: -2rem;
}

.-left-8 {
    left: -2rem;
}

.max-w-\[240px\] {
    max-width: 240px;
}

.max-w-\[600px\] {
    max-width: 600px;
}

.z-20 {
    z-index: 20;
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.blur-3xl {
    filter: blur(64px);
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-50 {
    opacity: 0.5;
}

.pointer-events-none {
    pointer-events: none;
}

.grayscale {
    filter: grayscale(100%);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

.hidden {
    display: none;
}

/* Card Animations */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:translate-y-\[-10px\] {
    transform: translateY(-10px);
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1;
}

.group:hover .group-hover\:h-auto {
    height: auto;
}

.group:hover .group-hover\:translate-x-0 {
    transform: translateX(0);
}

/* Navbar Specific */
nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .hidden {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .md\:flex {
        display: flex !important;
    }

    .md\:hidden {
        display: none !important;
    }
}

/* Footer Specific */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0;
    padding-left: 0;
}

.footer-links a {
    color: #CBD5E1;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A3A73;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Animations for JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom styles etc */
.aspect-\[4\/5\] {
    aspect-ratio: 4 / 5;
}

.object-cover {
    object-fit: cover;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

/* Language Dropdown */
#lang-dropdown {
    display: none;
}

#lang-dropdown.open {
    display: block;
}

/* Mobile Menu */
#mobile-menu {
    display: none;
}

#mobile-menu.open {
    display: block;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.submit-success {
    display: none;
    margin-top: 1rem;
    color: green;
}

.submit-success.visible {
    display: block;
}
