/* Luxury Authentication Service - Main CSS */

/* Color Palette - High Contrast Pastel Colors */
:root {
  --primary-gold: #dd9d38;
  --primary-navy: #303c4c;
  --primary-cream: #F8F6F0;
  --primary-burgundy: #8e0d3e;
  --primary-slate: #616c81;
  
  /* Light shades */
  --light-gold: #fff6cb;
  --light-navy: #717f8f;
  --light-cream: #FEFEFE;
  --light-burgundy: #cc4b56;
  --light-slate: #9ab3b9;
  
  /* Dark shades */
  --dark-gold: #a76200;
  --dark-navy: #0f151b;
  --dark-cream: #ddd9c1;
  --dark-burgundy: #310e0d;
  --dark-slate: #394a56;
  
  /* Typography */
  --font-size-root: 16px;
  --font-size-small: 0.875rem;
  --font-size-normal: 1rem;
  --font-size-large: 1.125rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-brand: 1.25rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-root);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-navy);
  background-color: var(--primary-cream);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); }

p {
  font-size: var(--font-size-normal);
  margin-bottom: 1rem;
}

/* Header & Navigation */
.navbar-brand {
  font-size: var(--font-size-brand) !important;
  font-weight: 700;
  color: var(--primary-gold) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  padding: 1rem 0;
  box-shadow: 0 9px 18px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: rgba(51, 65, 86, 0.95) !important;
  backdrop-filter: blur(11px);
  padding: 0.5rem 0;
}

.navbar-nav .nav-link {
  color: var(--primary-cream) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-burgundy) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../GOF_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
  color: var(--primary-cream);
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 3px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: var(--font-size-large);
  margin-bottom: 1.58rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: var(--font-size-normal);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* Decorative Shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(208, 187, 48, 0.10);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styling */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-navy);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1.58rem;
  color: var(--primary-slate);
  font-size: var(--font-size-large);
}

.section-desc {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-slate);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--light-cream);
  border-radius: 17px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border-color: var(--primary-gold);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-name {
  font-size: var(--font-size-h4);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.service-desc {
  color: var(--primary-slate);
  margin-bottom: 1.55rem;
  font-size: var(--font-size-small);
}

.service-price {
  font-size: var(--font-size-large);
  font-weight: 700;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.59rem;
}

.service-features li {
  padding: 0.25rem 0;
  font-size: var(--font-size-small);
  color: var(--primary-slate);
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-gold);
  margin-right: 0.5rem;
}

/* Testimonials */
.testimonials-slider {
  background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
  padding: 4rem 0;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.55rem;
  color: var(--primary-slate);
  font-size: var(--font-size-normal);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-navy);
  font-size: var(--font-size-normal);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-gold);
}

.team-name {
  font-size: var(--font-size-h4);
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--primary-navy);
}

.team-role {
  color: var(--primary-slate);
  font-size: var(--font-size-small);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-card {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-navy);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-gold);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--primary-slate);
  font-size: var(--font-size-small);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-burgundy));
  color: var(--primary-cream);
}

.contact-form {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--primary-cream);
  border-radius: 10px;
  padding: 0.75rem;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-control:focus {
  background: rgba(255,255,255,0.3);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(211, 161, 66, 0.25);
  color: var(--primary-cream);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--dark-gold), var(--primary-gold));
}

/* Footer */
footer {
  background: var(--dark-navy);
  color: var(--primary-cream);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: var(--font-size-h4);
}

.footer-section p, .footer-section a {
  color: var(--light-slate);
  text-decoration: none;
  font-size: var(--font-size-small);
  margin-bottom: 0.57rem;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--primary-slate);
  color: var(--light-slate);
  font-size: var(--font-size-small);
}

/* Breadcrumbs */
.breadcrumb-section {
  padding: 1rem 0;
  background: var(--light-cream);
}

.breadcrumb-img {
  width: 100%;
  max-width: 200px;
  height: 40px;
  object-fit: contain;
}

/* Utility Classes */
.text-gold { color: var(--primary-gold); }
.text-navy { color: var(--primary-navy); }
.text-slate { color: var(--primary-slate); }
.bg-cream { background-color: var(--primary-cream); }
.bg-light-cream { background-color: var(--light-cream); }

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: var(--font-size-h4);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.blog-excerpt {
  color: var(--primary-slate);
  font-size: var(--font-size-small);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-small);
}

.blog-link:hover {
  color: var(--dark-gold);
}

/* Step Numbers for Process Section */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.58rem;
  font-weight: bold;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: -50px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Alert Styles for Form Messages */
.alert {
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.alert-success {
  background-color: #bcdfc9;
  color: #1f6c2c;
  border: 1px solid #deeee0;
}

.alert-danger {
  background-color: #ffd2dd;
  color: #6c242f;
  border: 1px solid #ffc8d6;
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
