/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Poppins:wght@400;500;600&display=swap');

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f1115;
    color: #f5f5f5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   LOGO & BRANDING
   ============================================ */
.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fe3f12, #fe3f12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(254, 63, 18, 0.3);
    flex-shrink: 0;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(254, 63, 18, 0.3);
}

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar-glass {
    backdrop-filter: blur(10px);
    background: rgba(15, 17, 21, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar-scrolled {
    background: rgba(15, 17, 21, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-glass nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Ensure mobile menu is outside nav container */
.navbar-glass {
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-brand-text .brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.navbar-brand-text .brand-subtitle {
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: #9ca3af;
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.navbar-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.navbar-links a:hover {
    color: #fe3f12;
}

.navbar-links .btn-primary {
    color: white !important;
}

.navbar-links .btn-primary:hover {
    color: white !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, #fe3f12, #fe3f12);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 63, 18, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254, 63, 18, 0.5);
    color: white !important;
}

.btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: 2px solid #fe3f12;
    color: #fe3f12;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(254, 63, 18, 0.1);
}

.btn-white {
    background: white;
    color: #fe3f12;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-white:hover {
    background: #f3f4f6;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HAMBURGER MENU
   ============================================ */
.hamburger {
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    display: block;
    z-index: 100;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fe3f12;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    width: 100vw;
    background: #0f1115;
    border-bottom: 2px solid rgba(254, 63, 18, 0.3);
    z-index: 1000;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.mobile-menu.active {
    display: block;
    max-height: 600px;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.mobile-menu-content a {
    font-size: 1.1rem;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    display: block;
    width: 100%;
    border-left: 3px solid transparent;
}

.mobile-menu-content a:hover,
.mobile-menu-content a:focus {
    color: #fe3f12;
    background: rgba(254, 63, 18, 0.15);
    border-left-color: #fe3f12;
}

.mobile-menu-content .btn-primary {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem 1.5rem;
    border-left: none;
    font-size: 1.1rem;
}

/* ============================================
   DIAGONAL TEXTURE
   ============================================ */
.diagonal-texture {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(254, 63, 18, 0.03) 2px,
        rgba(254, 63, 18, 0.03) 4px
    );
}

/* ============================================
   CARDS & HOVER EFFECTS
   ============================================ */
.card-hover {
    transition: all 0.3s ease;
    background: #1a1b23;
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(254, 63, 18, 0.3);
}

.stat-card {
    background: rgba(254, 63, 18, 0.1);
    border: 1px solid rgba(254, 63, 18, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 4rem 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.section-label {
    color: #fe3f12;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.grid-3 > div {
    display: flex;
    flex-direction: column;
}

.grid-3 nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem;
}

.grid-3 nav a {
    display: block !important;
    width: 100% !important;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #d1d5db;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #fe3f12;
    box-shadow: 0 0 0 3px rgba(254, 63, 18, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-orange {
    background: rgba(254, 63, 18, 0.2);
    color: #fe3f12;
    border: 1px solid rgba(254, 63, 18, 0.3);
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: #1f2937;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #d1d5db;
    margin: 0.25rem;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(200%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast.visible {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom right, #0f1115, #14151b, #0f1115);
}

.hero-badge {
    display: inline-block;
    background: rgba(254, 63, 18, 0.2);
    border: 1px solid rgba(254, 63, 18, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #fe3f12;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.hero-stats span:not(:last-child)::after {
    content: '|';
    margin: 0 1rem;
}

.hero-image-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.hero-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hero-thumbnails img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #0a0c0f;
    border-top: 1px solid #111827;
    padding: 3rem 1rem 1.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #111827;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-20 {
    margin-top: 5rem;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.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-12 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.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;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.text-white {
    color: white;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-orange-500 {
    color: #fe3f12;
}

.text-orange-400 {
    color: #fe3f12;
}

.bg-[#0f1115] {
    background-color: #0f1115;
}

.bg-[#14151b] {
    background-color: #14151b;
}

.bg-[#1a1b23] {
    background-color: #1a1b23;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-orange-500\/20 {
    background-color: rgba(254, 63, 18, 0.2);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-full {
    border-radius: 9999px;
}

.border-t {
    border-top: 1px solid;
}

.border-orange-500\/20 {
    border-color: rgba(254, 63, 18, 0.2);
}

.border-gray-800 {
    border-color: #1f2937;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.leading-relaxed {
    line-height: 1.625;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.w-12 {
    width: 3rem;
}

.w-24 {
    width: 6rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-64 {
    height: 16rem;
}

.w-3\.5 {
    width: 0.875rem;
}

.h-3\.5 {
    height: 0.875rem;
}

.opacity-50 {
    opacity: 0.5;
}

.hover\:text-orange-500:hover {
    color: #fe3f12;
}

.hover\:text-orange-400:hover {
    color: #fe3f12;
}

.transition-colors {
    transition-property: color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:text-4xl {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .lg\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .lg\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* Gradient Backgrounds */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-orange-600 {
    --tw-gradient-from: #fe3f12;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 63, 18, 0));
}

.to-orange-500 {
    --tw-gradient-to: #fe3f12;
}

.from-\[#0f1115\] {
    --tw-gradient-from: #0f1115;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 17, 21, 0));
}

.via-\[#14151b\] {
    --tw-gradient-stops: var(--tw-gradient-from), #14151b, var(--tw-gradient-to, rgba(20, 21, 27, 0));
}

.via-\[#1a0f15\] {
    --tw-gradient-stops: var(--tw-gradient-from), #1a0f15, var(--tw-gradient-to, rgba(26, 15, 21, 0));
}

