/*
Theme Name: Uma International Exim
Theme URI: https://umainternationalexim.com
Description: Professional Export-Import Business Theme with Dynamic Global Design
Version: 1.0
Author: Manus
Author URI: https://manus.im
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uma-international-exim
Domain Path: /languages
*/

/* ============================================
   Uma International Exim - Dynamic Global Design
   Colors: Deep Ocean Blue (#0F3A66), Emerald Green (#1B7B6B), Warm Amber (#F59E0B)
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2937;
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #0F3A66;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1B7B6B;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0F3A66;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 2.5rem;
  width: 2.5rem;
}

nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

nav a {
  font-weight: 500;
  transition: color 0.2s ease;
  color: white;
}

header.scrolled nav a {
  color: #0F3A66;
}

nav a:hover {
  color: #1B7B6B;
}

.cta-button {
  display: none;
  padding: 0.5rem 1.5rem;
  background: #F59E0B;
  color: #0F3A66;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .cta-button {
    display: block;
  }
}

.cta-button:hover {
  background: #f3a726;
}

.cta-button:active {
  transform: scale(0.95);
}

/* Mobile Menu */
.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  transition: color 0.2s ease;
}

header.scrolled .menu-toggle {
  color: #0F3A66;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 5rem;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 58, 102, 0.8), rgba(27, 123, 107, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 48rem;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

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

.accent-line {
  height: 0.25rem;
  width: 3rem;
  background: linear-gradient(to right, #F59E0B, #1B7B6B);
  border-radius: 9999px;
  margin: 1.5rem auto;
}

.hero h1 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero h1 .accent {
  color: #F59E0B;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: #F59E0B;
  color: #0F3A66;
}

.btn-primary:hover {
  background: #f3a726;
  box-shadow: 0 20px 25px rgba(245, 158, 11, 0.3);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #F59E0B;
}

.stat-label {
  font-size: 0.875rem;
  color: #d1d5db;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #f3f4f6;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.7s ease-out;
}

.section-header h2 {
  color: #0F3A66;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 28rem;
  margin: 0 auto;
}

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

.service-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.7s ease-out;
}

.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #0F3A66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.service-card h3 {
  color: #0F3A66;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.service-link {
  color: #1B7B6B;
  font-weight: 600;
  transition: all 0.2s ease;
}

.service-link:hover {
  transform: translateX(0.25rem);
}

.service-accent {
  height: 0.25rem;
  width: 0;
  background: linear-gradient(to right, #F59E0B, #1B7B6B);
  border-radius: 9999px;
  margin-top: 1.5rem;
  transition: width 0.3s ease;
}

.service-card:hover .service-accent {
  width: 100%;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h2 {
  color: #0F3A66;
  margin-bottom: 1.5rem;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1B7B6B;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.about-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 0.25rem;
  background: linear-gradient(to right, #F59E0B, #1B7B6B);
  border-radius: 9999px;
}

.values-list {
  list-style: none;
  margin: 2rem 0;
}

.values-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.values-list svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #1B7B6B;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.values-list h4 {
  color: #0F3A66;
  margin-bottom: 0.25rem;
}

.values-list p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 58, 102, 0.3), transparent);
}

.stats-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #F59E0B;
}

.stats-card .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F3A66;
}

.stats-card .label {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Global Reach Section */
.global-reach {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #f3f4f6, white);
}

.reach-map {
  margin: 3rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.reach-map img {
  width: 100%;
  height: auto;
  display: block;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.region-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.7s ease-out;
}

.region-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.region-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.region-icon {
  width: 2rem;
  height: 2rem;
  background: #1B7B6B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.region-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F59E0B;
}

.region-card h3 {
  color: #0F3A66;
  margin-bottom: 0.5rem;
}

.region-card p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 0.7s ease-out;
}

.stat-item svg {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1rem;
}

.stat-item .number {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  color: #6b7280;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: white;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: linear-gradient(135deg, #f3f4f6, white);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  animation: fadeInUp 0.7s ease-out;
}

.contact-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: #0F3A66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.contact-card h3 {
  color: #0F3A66;
  margin-bottom: 0.5rem;
}

.contact-card .value {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.contact-card .description {
  color: #6b7280;
  font-size: 0.875rem;
}

.contact-form {
  background: linear-gradient(135deg, #0F3A66, #1B7B6B);
  border-radius: 0.75rem;
  padding: 3rem;
  color: white;
  max-width: 42rem;
  margin: 0 auto;
  animation: fadeInUp 0.7s ease-out;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #F59E0B;
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: none;
  min-height: 8rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: #F59E0B;
  color: #0F3A66;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: #f3a726;
}

.form-submit:active {
  transform: scale(0.95);
}

/* Footer */
footer {
  background: #0F3A66;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 2rem;
  width: 2rem;
}

.footer-brand span {
  font-weight: 700;
}

.footer-description {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: #1B7B6B;
}

.footer-section h4 {
  color: #F59E0B;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul a {
  color: #d1d5db;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-section ul a:hover {
  color: white;
}

.newsletter {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.newsletter h3 {
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: #F59E0B;
  color: #0F3A66;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: #f3a726;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .services-grid,
  .contact-info,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* WordPress Specific */
.wp-block-image {
  margin: 1.5rem 0;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}
