:root {
  --primary-navy: #0B203C;
  --primary-gold: #C5A059;
  --primary-gold-hover: #D8B26A;
  --secondary-white: #FFFFFF;
  --bg-light: #F4F5F7;
  --bg-dark: #1A1A1A;
  --text-dark: #333333;
  --text-light: #F8F9FA;
  --text-muted: #6C757D;
  --subtle-wood: #8B5A2B;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--secondary-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-navy);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-gold);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.py-5 { padding: 5rem 0; }
.bg-light { background-color: var(--bg-light); }
.bg-navy { background-color: var(--primary-navy); color: var(--text-light); }
.bg-navy h2, .bg-navy h3 { color: var(--text-light); }
.text-gold { color: var(--primary-gold); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--secondary-white);
}

.btn-primary:hover {
  background-color: var(--primary-gold-hover);
  color: var(--secondary-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
}

.btn-outline:hover {
  background-color: var(--primary-gold);
  color: var(--secondary-white);
}

/* Header & Nav */
header {
  background-color: var(--secondary-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background-color: var(--primary-navy);
  color: var(--text-light);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--text-light);
  margin-left: 15px;
}
.top-bar a:hover {
  color: var(--primary-gold);
}

.main-nav {
  padding: 5px 0;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
  width: auto;
  display: block;
  position: relative;
  z-index: 10;
}

.logo h1 {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  color: var(--primary-navy);
}

.logo span {
  color: var(--primary-gold);
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--secondary-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 32, 60, 0.65);
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--secondary-white);
  margin-bottom: 20px;
  text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Service Preview Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--secondary-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 25px;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Why Choose Us & About */
.flex-split {
  display: flex;
  gap: 50px;
  align-items: center;
}
/* Quote Form Specifics */
.quote-container {
    max-width: 900px;
    margin: 40px auto;
}

.form-section {
    background: var(--secondary-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid #edf2f7;
}

.form-section-title {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    transition: var(--transition);
}

.checkbox-item:hover {
    border-color: var(--primary-gold);
    background-color: #fffaf0;
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 600px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}

.file-upload-wrapper {
    border: 2px dashed #cbd5e0;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-gold);
    background: #fdfaf3;
}

.trust-badge-horizontal {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.trust-badge-item i {
    color: var(--primary-gold);
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.timeline-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-card {
    flex: 1;
    min-width: 140px;
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card label {
    display: block;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.radio-card input:checked + label {
    border-color: var(--primary-gold);
    background: #fffaf0;
    color: var(--primary-navy);
    box-shadow: 0 0 0 1px var(--primary-gold);
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.list-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
}

.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(rgba(11, 32, 60, 0.9), rgba(11, 32, 60, 0.9)), url('../images/cta-bg.jpg') center/cover;
  color: var(--secondary-white);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 {
  color: var(--secondary-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Service Areas */
.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.service-area-tag {
  background-color: var(--bg-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-navy);
  border: 1px solid #E2E8F0;
}

/* Galleries */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 32, 60, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Forms */
.contact-form {
  background: var(--secondary-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-navy);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-muted);
  padding: 60px 0 20px;
}

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

.footer-col h4 {
  color: var(--secondary-white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-col p, .footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-white);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .flex-split {
    flex-direction: column;
  }
  
  .top-bar {
    display: none;
  }
}

/* Digital Business Card Styles */
.connect-page {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #05101d 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    color: white;
}

.connect-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.connect-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-navy);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.connect-card h1 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.connect-card p {
    color: var(--primary-gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 25px;
}

.connect-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: var(--primary-navy);
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 700;
    transition: var(--transition);
    width: 100%;
    border: none;
    text-decoration: none;
}

.connect-link:hover {
    transform: translateY(-3px);
    background: var(--primary-gold);
    color: white;
}

.connect-link.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.connect-link.outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-gold);
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.social-icon-btn {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon-btn:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.share-btn-floating {
    margin-top: 30px;
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

