:root {
  --color-gold: #D4AF37;
  --color-onyx: #000000;
  --color-navy: #4A2D8F;
  --color-teal: #00D4AA;
  --color-gray: #9E9E9E;
  --color-beige: #D4B896;
  --color-cream: #F5F3F0;
  --color-pearl: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #f8f9fa;
  color: var(--color-onyx);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
  margin-top: 0;
}

/* Header - Matching Home.html - Minimalist Style */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: #2c3e50;
  box-sizing: border-box;
}

header.scrolled {
  background: #2c3e50;
  backdrop-filter: none;
  padding: 8px 30px;
}

header.hidden {
  transform: translateY(-100%);
}

/* Header Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-logo:hover {
  opacity: 0.8;
}

.logo-image {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  overflow: visible;
}

nav a {
  padding: 10px 14px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 2px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

nav a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Navigation active states */
nav a.active {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

nav a.active:hover {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* Services dropdown */
.services-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: rgba(20, 30, 48, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.services-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  background: transparent;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: normal;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateX(4px);
}

/* Dropdown arrow icons */
.services-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s ease;
}

.services-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* Responsive Header Styles - Matching Home.html */
@media (min-width: 1600px) {
  header {
    padding: 15px 40px;
  }
  
  nav {
    gap: 8px;
  }
  
  nav a {
    padding: 12px 16px;
    font-size: 15px;
    letter-spacing: 1px;
  }
}

@media (max-width: 1400px) {
  header {
    padding: 20px 20px;
  }
  
  nav {
    gap: 4px;
  }
  
  nav a {
    padding: 10px 12px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}

/* Mobile responsiveness */
@media (max-width: 1200px) {
  header {
    padding: 15px 20px;
  }
  
  nav {
    gap: 3px;
  }
  
  nav a {
    padding: 8px 10px;
    font-size: 12px;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 12px 15px;
  }
  
  nav {
    gap: 2px;
  }
  
  nav a {
    padding: 6px 8px;
    font-size: 11px;
    letter-spacing: 0px;
  }
  
  .header-logo {
    font-size: 14px;
  }
  
  .logo-image {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 10px;
  }
  
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
  }
  
  nav a {
    padding: 4px 6px;
    font-size: 10px;
    letter-spacing: 0px;
  }
  
  .header-logo span {
    display: none;
  }
}

/* Hero Section - Matching header for minimalist look */
.contact-hero {
  background: #2c3e50;
  padding: 150px 60px 80px;
  margin-top: 0;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -2px;
  text-transform: uppercase;
  font-style: italic;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* Contact Main Section */
.contact-main-section {
  padding: 80px 50px;
  background: white;
  min-height: 60vh;
}

.contact-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

/* Form Container */
.contact-form-container h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--color-onyx);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.form-subtitle {
  color: #666;
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: Inter, sans-serif;
  transition: all 0.3s ease;
  background: white;
  color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-button {
  margin-top: 10px;
  padding: 16px 32px;
  background: var(--color-gold);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-button:hover {
  background: #B8941F;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.button-loader {
  display: none;
}

.submit-button.loading .button-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Messages */
.form-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Contact Info Column */
.contact-info-column {
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  height: fit-content;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-column h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 40px;
  color: var(--color-onyx);
  text-transform: uppercase;
  letter-spacing: -1px;
  text-align: center;
}

/* Info Cards */
.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px;
  background: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  background: white;
}

.info-icon {
  font-size: 32px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.info-text {
  min-width: 0;
}

.info-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-text p {
    word-break: break-word;
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-onyx);
}

/* Social Media Section */
.social-media-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #e0e0e0;
}

.social-media-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.social-links-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-onyx);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon-link:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  background: white;
}

.social-icon-link img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Response Time Card */
.response-time-card {
  margin-top: 32px;
  padding: 24px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.response-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.response-time-card p {
  font-size: 15px;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-info-column {
    padding: 40px 35px;
  }
  
  .contact-info-column h2 {
    font-size: 30px;
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 20px 60px;
  }

  .contact-main-section {
    padding: 60px 30px;
  }

  .contact-info-column {
    padding: 35px 25px;
  }

  .contact-info-column h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .info-card {
    padding: 20px;
    gap: 14px;
  }
  
  .info-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  
  .info-text p {
    font-size: 16px;
  }
  
  .social-icon-link {
    padding: 18px;
  }
  
  .social-icon-link img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .info-text p {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* Footer Styles */
.footer {
  background: #1a2332;
  color: white;
  padding: 60px 20px 40px;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-column h4 {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #D4AF37;
}

.footer-brand .brand-title {
  color: #D4AF37;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-brand .brand-description {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

.footer-contact {
  display: block;
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-contact span {
  margin-right: 10px;
  font-size: 18px;
}

.footer-contact:hover {
  background: rgba(212,175,55,0.15);
  border-color: #D4AF37;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.social-icons img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px;
  padding-top: 30px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;

  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .footer-bottom {
    display: flex;
  flex-direction: column; 
  gap: 10px;
  align-items: center;
  text-align: center;
  }
}


.footer-column ul {
  list-style: none;  
  padding-left: 0;    
  margin: 0;         
}