/*
Theme Name: Aladin Theme
Theme URI: http://example.com/aladin
Author: Antigravity
Author URI: http://example.com
Description: Premium B2B Export WordPress Theme for Aladin. Modern, corporate, and clean design with React-like aesthetics.
Version: 1.1.0
License: GNU General Public License v2 or later
Text Domain: aladin-theme
Tags: custom-background, custom-logo, custom-menu
*/

/* ==========================================================================
   CSS Variables (Global Brand & Layout Tokens)
   ========================================================================== */
   :root {
	/* 
	 * Branding Colors 
	 * Update these hex codes to easily change the site's global color scheme.
	 */
	--color-primary: #0B1F3A;        /* Deep Navy */
	--color-primary-light: #163259;  /* Lighter Navy for hover states */
	--color-secondary: #121212;      /* Matte Black */
	--color-accent: #C9A646;         /* Gold Accent */
	--color-accent-hover: #DDBB5C;   /* Lighter Gold for hover states */
	
	/* Layout Colors */
	--color-background: #FAFAF7;     /* Ivory White Base */
	--color-surface: #FFFFFF;        /* Pure White for Cards */
	--color-surface-light: #F2F4F7;  /* Light Grey for alternating sections */
	--color-text-main: #333333;      /* Primary Text */
	--color-text-muted: #666666;     /* Muted Text */
	--color-border: #E5E7EB;         /* Subtle borders */
  
	/* Typography */
	--font-heading: 'Playfair Display', serif;
	--font-body: 'Inter', sans-serif;
  
	/* Spacing System (8px base) */
	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-5: 40px;
	--space-6: 48px;
	--space-8: 64px;
	--space-12: 96px;
	--space-16: 128px;
  
	/* Effects */
	--border-radius-sm: 8px;
	--border-radius-md: 16px;
	--border-radius-lg: 24px;
	--transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	
	/* Premium Shadows */
	--shadow-sm: 0 4px 6px -1px rgba(11, 31, 58, 0.05), 0 2px 4px -1px rgba(11, 31, 58, 0.03);
	--shadow-md: 0 10px 15px -3px rgba(11, 31, 58, 0.08), 0 4px 6px -2px rgba(11, 31, 58, 0.04);
	--shadow-lg: 0 20px 25px -5px rgba(11, 31, 58, 0.1), 0 10px 10px -5px rgba(11, 31, 58, 0.04);
	--shadow-glow: 0 0 20px rgba(201, 166, 70, 0.3); /* Gold Glow */
  }
  
  /* ==========================================================================
	 Reset & Base
	 ========================================================================== */
  *, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
  }
  
  html {
	scroll-behavior: smooth;
  }
  
  body {
	font-family: var(--font-body);
	color: var(--color-text-main);
	background-color: var(--color-background);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-primary);
	font-weight: 700;
	line-height: 1.2;
  }
  
  p {
	margin-bottom: var(--space-3);
  }
  
  a {
	color: var(--color-primary);
	text-decoration: none;
	transition: var(--transition-smooth);
  }
  
  img {
	max-width: 100%;
	height: auto;
	display: block;
  }
  
  ul {
	list-style: none;
  }
  
  .container {
	width: 100%;
	max-width: 1280px; /* Slightly wider for modern feel */
	margin: 0 auto;
	padding: 0 var(--space-4);
  }
  
  .section {
	padding: var(--space-12) 0;
  }
  
  .section--bg-light {
	background-color: var(--color-surface-light);
  }
  
  .section-title {
	text-align: center;
	margin-bottom: var(--space-8);
  }
  
  .section-title h2 {
	font-size: 2.75rem;
	margin-bottom: var(--space-3);
	position: relative;
	display: inline-block;
  }
  
  .section-title h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--color-accent);
	border-radius: 2px;
  }
  
  .section-title p {
	font-size: 1.125rem;
	color: var(--color-text-muted);
	max-width: 700px;
	margin: var(--space-3) auto 0;
  }
  
  /* ==========================================================================
	 Buttons
	 ========================================================================== */
  .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px var(--space-4);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	cursor: pointer;
	border-radius: 50px; /* Pill shape for modern look */
	transition: var(--transition-smooth);
	border: 2px solid transparent;
	text-decoration: none;
  }
  
  .btn i {
	font-size: 1.25rem;
	transition: transform 0.3s ease;
  }
  
  .btn:hover i {
	transform: translateX(4px);
  }
  
  .btn--primary {
	background-color: var(--color-accent);
	color: var(--color-primary);
	box-shadow: var(--shadow-md);
  }
  
  .btn--primary:hover {
	background-color: var(--color-accent-hover);
	color: var(--color-primary);
	box-shadow: var(--shadow-glow);
	transform: translateY(-2px);
  }
  
  .btn--secondary {
	background-color: transparent;
	border-color: var(--color-primary);
	color: var(--color-primary);
  }
  
  .btn--secondary:hover {
	background-color: var(--color-primary);
	color: var(--color-surface);
	transform: translateY(-2px);
  }
  
  .btn--outline-white {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--color-surface);
	backdrop-filter: blur(4px);
  }
  
  .btn--outline-white:hover {
	background-color: var(--color-surface);
	color: var(--color-primary);
	border-color: var(--color-surface);
	transform: translateY(-2px);
  }
  
  /* ==========================================================================
	 Header (Glassmorphism)
	 ========================================================================== */
  .site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(250, 250, 247, 0.85); /* Ivory with transparency */
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: var(--transition-smooth);
  }
  
  .site-header.is-scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: var(--shadow-sm);
	border-bottom-color: var(--color-border);
  }
  
  .site-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	transition: height 0.3s ease;
  }
  
  .site-header.is-scrolled .site-header__inner {
	height: 70px;
  }
  
  .site-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
  }
  
  .site-logo__text {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--color-primary);
	line-height: 1;
	letter-spacing: -0.5px;
	transition: var(--transition-smooth);
  }

  .site-logo__dot {
	color: var(--color-accent);
  }

  .site-logo--footer .site-logo__text {
	color: var(--color-surface);
  }
  
  .site-nav__list {
	display: flex;
	gap: var(--space-4);
	align-items: center;
  }
  
  .site-nav__link {
	color: var(--color-text-muted);
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
	padding: 8px 0;
  }
  
  .site-nav__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background-color: var(--color-accent);
	transition: var(--transition-smooth);
  }
  
  .site-nav__link:hover {
	color: var(--color-primary);
  }
  
  .site-nav__link:hover::after,
  .site-nav__link--active::after {
	width: 100%;
  }
  
  .site-nav__link--active {
	color: var(--color-primary);
  }
  
  .mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.75rem;
	color: var(--color-primary);
	padding: 8px;
  }
  
  @media (max-width: 992px) {
	.site-nav {
	  position: absolute;
	  top: 100%;
	  left: 0;
	  width: 100%;
	  background-color: var(--color-surface);
	  padding: 0;
	  max-height: 0;
	  overflow: hidden;
	  transition: max-height 0.4s ease, padding 0.4s ease;
	  box-shadow: var(--shadow-md);
	}
	
	.site-nav.is-active {
	  max-height: 500px;
	  padding: var(--space-3) 0;
	}
  
	.site-nav__list {
	  flex-direction: column;
	  gap: 0;
	}
	
	.site-nav__link {
	  display: block;
	  padding: 16px var(--space-4);
	  border-bottom: 1px solid var(--color-border);
	}
  
	.site-nav__link::after {
	  display: none;
	}
  
	.mobile-menu-toggle {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}
  }
  
  /* ==========================================================================
	 Hero Section
	 ========================================================================== */
  .hero {
	background-color: var(--color-primary);
	color: var(--color-surface);
	padding: 180px 0 120px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: 90vh;
  }
  
  .hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.7) 100%), url('assets/images/hero-bg.png') center/cover;
	background-attachment: fixed; /* Parallax effect */
	z-index: 1;
  }
  
  .hero__inner {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
  }
  
  .hero__title {
	font-size: 4.5rem;
	color: var(--color-surface);
	margin-bottom: var(--space-3);
	line-height: 1.1;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .hero__subtitle {
	font-size: 1.35rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: var(--space-5);
	font-weight: 300;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
  }
  
  .hero__actions {
	display: flex;
	justify-content: center;
	gap: var(--space-3);
  }
  
  @media (max-width: 768px) {
	.hero {
	  padding: 140px 0 80px;
	  min-height: auto;
	}
	.hero__title {
	  font-size: 3rem;
	}
	.hero__subtitle {
	  font-size: 1.125rem;
	}
	.hero__actions {
	  flex-direction: column;
	  width: 100%;
	  max-width: 300px;
	  margin: 0 auto;
	}
  }
  
  /* ==========================================================================
	 About Section
	 ========================================================================== */
  .about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-8);
	align-items: center;
  }
  
  .about__content h2 {
	font-size: 2.75rem;
	margin-bottom: var(--space-3);
  }
  
  .about__content p {
	font-size: 1.125rem;
	color: var(--color-text-muted);
  }
  
  .about__features {
	margin-top: var(--space-5);
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
  }
  
  .about__feature {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	background: var(--color-surface);
	padding: var(--space-3);
	border-radius: var(--border-radius-md);
	box-shadow: var(--shadow-sm);
	transition: var(--transition-smooth);
	border: 1px solid var(--color-border);
  }
  
  .about__feature:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-md);
	border-color: var(--color-accent);
  }
  
  .about__feature-icon {
	color: var(--color-accent);
	font-size: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(201, 166, 70, 0.1);
	width: 60px;
	height: 60px;
	border-radius: var(--border-radius-sm);
	flex-shrink: 0;
  }
  
  .about__feature-text h4 {
	font-family: var(--font-body);
	font-size: 1.25rem;
	margin-bottom: 4px;
	color: var(--color-primary);
  }
  
  .about__feature-text p {
	margin: 0;
	font-size: 0.95rem;
  }
  
  .about__image-wrapper {
	position: relative;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
  }
  
  .about__image-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(11, 31, 58, 0.4), transparent);
	pointer-events: none;
  }
  
  .about__image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.7s ease;
  }
  
  .about__image-wrapper:hover img {
	transform: scale(1.05);
  }
  
  @media (max-width: 992px) {
	.about__grid {
	  grid-template-columns: 1fr;
	}
  }
  
  /* ==========================================================================
	 Products Section
	 ========================================================================== */
  .products-category {
	margin-bottom: var(--space-8);
  }
  
  .products-category__title {
	font-size: 2rem;
	margin-bottom: var(--space-4);
	display: flex;
	align-items: center;
	gap: 12px;
  }
  
  .products-category__title i {
	color: var(--color-accent);
  }
  
  .products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--space-4);
  }
  
  .product-card {
	background-color: var(--color-surface);
	border-radius: var(--border-radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-bounce);
	border: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	position: relative;
	top: 0;
  }
  
  .product-card:hover {
	box-shadow: var(--shadow-lg);
	top: -10px;
	border-color: rgba(201, 166, 70, 0.3);
  }
  
  .product-card__image {
	height: 240px;
	overflow: hidden;
	position: relative;
  }
  
  .product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
  }
  
  .product-card:hover .product-card__image img {
	transform: scale(1.1);
  }
  
  .product-card__content {
	padding: var(--space-4);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
  }
  
  .product-card__title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	margin-bottom: var(--space-2);
  }
  
  .product-card__desc {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	margin-bottom: var(--space-4);
	flex-grow: 1;
  }
  
  .product-card__action {
	margin-top: auto;
	font-weight: 600;
	color: var(--color-primary);
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 8px;
  }
  
  .product-card__action i {
	transition: transform 0.3s ease;
  }
  
  .product-card:hover .product-card__action {
	color: var(--color-accent);
  }
  
  .product-card:hover .product-card__action i {
	transform: translateX(4px);
  }
  
  /* ==========================================================================
	 Export Process Section
	 ========================================================================== */
  .process-timeline {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-3);
	margin-top: var(--space-6);
  }
  
  .process-step {
	background: var(--color-surface);
	padding: var(--space-4) var(--space-3);
	border-radius: var(--border-radius-md);
	text-align: center;
	box-shadow: var(--shadow-sm);
	position: relative;
	transition: var(--transition-smooth);
	border: 1px solid var(--color-border);
  }
  
  .process-step:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: var(--color-accent);
  }
  
  .process-step__icon {
	width: 70px;
	height: 70px;
	background-color: var(--color-primary-light);
	color: var(--color-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--space-3);
	font-size: 2rem;
	transition: var(--transition-smooth);
  }
  
  .process-step:hover .process-step__icon {
	background-color: var(--color-primary);
	transform: scale(1.1);
  }
  
  .process-step__title {
	font-size: 1.125rem;
	margin-bottom: var(--space-2);
  }
  
  .process-step__desc {
	font-size: 0.9rem;
	color: var(--color-text-muted);
  }
  
  /* Connectors */
  @media (min-width: 993px) {
	.process-step:not(:last-child)::after {
	  content: '\2192'; /* Unicode Right Arrow */
	  font-family: var(--font-body);
	  position: absolute;
	  top: 50px;
	  right: -25px;
	  font-size: 1.5rem;
	  color: var(--color-accent);
	  z-index: 2;
	}
  }
  
  @media (max-width: 992px) {
	.process-timeline {
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: var(--space-4);
	}
  }
  
  /* ==========================================================================
	 Global Presence Section
	 ========================================================================== */
  .global-presence {
	background-color: var(--color-primary);
	color: var(--color-surface);
	text-align: center;
	position: relative;
	padding: var(--space-12) 0;
	overflow: hidden;
  }
  
  .global-presence .section-title h2 {
	color: var(--color-surface);
  }
  
  .global-presence .section-title p {
	color: rgba(255, 255, 255, 0.8);
  }
  
  .global-presence__map {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	border-radius: var(--border-radius-lg);
	box-shadow: 0 0 40px rgba(0,0,0,0.5);
  }
  
  .global-presence__map img {
	width: 100%;
	border-radius: var(--border-radius-lg);
  }
  
  /* ==========================================================================
	 CTA Section
	 ========================================================================== */
  .cta-section {
	background: linear-gradient(135deg, var(--color-accent) 0%, #B89333 100%);
	text-align: center;
	padding: var(--space-8) 0;
	position: relative;
  }
  
  .cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%);
	pointer-events: none;
  }
  
  .cta-section__title {
	color: var(--color-primary);
	font-size: 3rem;
	margin-bottom: var(--space-3);
	text-shadow: 0 2px 4px rgba(255,255,255,0.2);
  }
  
  /* ==========================================================================
	 Footer
	 ========================================================================== */
  .site-footer {
	background-color: var(--color-secondary);
	color: rgba(255, 255, 255, 0.7);
	padding: var(--space-12) 0 var(--space-4);
	border-top: 5px solid var(--color-primary);
  }
  
  .footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: var(--space-6);
	margin-bottom: var(--space-8);
  }
  
  .footer-col h3 {
	color: var(--color-surface);
	font-size: 1.25rem;
	margin-bottom: var(--space-4);
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1rem;
  }
  
  .footer-logo {
	margin-bottom: var(--space-4);
  }
  
  .footer-text {
	font-size: 0.95rem;
	line-height: 1.8;
  }
  
  .footer-nav__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
  }
  
  .footer-nav__link {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition-smooth);
	display: inline-block;
  }
  
  .footer-nav__link:hover {
	color: var(--color-accent);
	transform: translateX(4px);
  }
  
  .footer-contact__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.95rem;
  }
  
  .footer-contact__icon {
	color: var(--color-accent);
	font-size: 1.25rem;
	margin-top: 2px;
  }
  
  .footer-bottom {
	text-align: center;
	padding-top: var(--space-4);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.875rem;
  }
  
  @media (max-width: 992px) {
	.footer-grid {
	  grid-template-columns: 1fr 1fr;
	}
  }
  
  @media (max-width: 576px) {
	.footer-grid {
	  grid-template-columns: 1fr;
	}
  }
