:root {
    --gold-primary: #C7A24F;
    --gold-light: #E4CA7A;
    --gold-dark: #A68741;
    --cream: #FAF9F6;
    --dark-bg: #0F1419;
    --dark-secondary: #1A1F26;
    --dark-tertiary: #252B33;
    --text-light: #FFFFFF;
    --text-gold: #E4CA7A;
    --text-dark: #2c2c2c;
    --text-muted: #B8B8B8;
    --shadow-gold: 0 20px 60px rgba(199, 162, 79, 0.3);
    --shadow-gold-lg: 0 30px 80px rgba(199, 162, 79, 0.4);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.gold-accent-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
    opacity: 0.3;
}



.hf-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(199, 162, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  z-index: 1000;
}
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: 1px;
}
.brand-text {
  position: relative;
}
.brand-dot {
  color: var(--gold);
  font-size: 2rem;
  margin-left: 4px;
  animation: pulse 2s infinite;
}
.hf-navbar .nav-link {
  color: var(--gray-900) !important;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition-smooth);
}
.hf-navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.hf-navbar .nav-link:hover::before {
  width: 70%;
}
.hf-navbar .nav-link:hover {
  color: var(--gold) !important;
}
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}
.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}
.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(199, 162, 79, 0.1), rgba(199, 162, 79, 0.05));
  color: var(--gold);
}



.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 0;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(199, 162, 79, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(199, 162, 79, 0.1) 0%, transparent 50%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
    font-weight: 400;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto 50px;
    font-weight: 400;
}
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}
.divider-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.divider-diamond {
    width: 10px;
    height: 10px;
    background: var(--gold-primary);
    transform: rotate(45deg);
}



.services-section {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F6F1 100%);
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-label {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 20px;
}
.section-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}
.services-container {
    max-width: 1200px;
    margin: 0 auto;
}



.visa-card-main {
    background: linear-gradient(145deg, #FFFFFF 0%, #F9F8F5 100%);
    border: 1px solid rgba(199, 162, 79, 0.3);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(199, 162, 79, 0.1);
}
.visa-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.visa-card-main::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(199, 162, 79, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.visa-card-main:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(199, 162, 79, 0.4);
}
.visa-card-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}
.visa-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(199, 162, 79, 0.3);
}
.visa-icon svg {
    width: 35px;
    height: 35px;
    fill: #FFFFFF;
}
.visa-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.visa-card-subtitle {
    font-size: 0.9rem;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.visa-card-description {
    color: #666666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 95px;
}
.visa-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding-left: 95px;
}



.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555555;
    font-size: 0.95rem;
}
.feature-check {
    width: 20px;
    height: 20px;
    background: rgba(199, 162, 79, 0.2);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-check svg {
    width: 10px;
    height: 10px;
    fill: var(--gold-dark);
}



.non-immigrant-section {
    background: linear-gradient(145deg, #FFFFFF 0%, #F9F8F5 100%);
    border: 1px solid rgba(199, 162, 79, 0.3);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(199, 162, 79, 0.1);
}
.non-immigrant-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.non-immigrant-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}
.non-immigrant-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.non-immigrant-subtitle {
    font-size: 0.9rem;
    color: var(--gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}



.visa-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.visa-type-card {
    background: #FAF9F6;
    border: 1px solid rgba(199, 162, 79, 0.25);
    border-radius: 15px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}
.visa-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.visa-type-card:hover {
    transform: translateX(5px);
    border-color: rgba(199, 162, 79, 0.5);
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(199, 162, 79, 0.15);
}
.visa-type-card:hover::before {
    opacity: 1;
}
.visa-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.visa-type-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.visa-type-full-name {
    font-size: 0.85rem;
    color: var(--gold-dark);
    margin-bottom: 15px;
    font-weight: 500;
}
.visa-type-description {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.visa-type-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #555555;
}
.detail-icon {
    width: 16px;
    height: 16px;
    fill: var(--gold-primary);
    flex-shrink: 0;
}



.cta-section {
    position: relative;
    z-index: 2;
    padding: 100px 20px;
    background: linear-gradient(180deg, #F8F6F1 0%, #FFFFFF 100%);
    text-align: center;
}
.cta-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #FFFFFF, #FAF9F6);
    border: 1px solid rgba(199, 162, 79, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(199, 162, 79, 0.15);
}
.cta-container::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(199, 162, 79, 0.1) 0%, transparent 50%);
    animation: shimmer 15s infinite linear;
}



@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.cta-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(199, 162, 79, 0.3);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(199, 162, 79, 0.4);
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    color: white;
    text-decoration: none;
}
.cta-button svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
    transition: transform 0.3s ease;
}
.cta-button:hover svg {
    transform: translateX(5px);
}



.corner-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.5;
}
.corner-decoration.top-left {
    top: 20px;
    left: 20px;
    border-top: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
}
.corner-decoration.top-right {
    top: 20px;
    right: 20px;
    border-top: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
}
.corner-decoration.bottom-left {
    bottom: 20px;
    left: 20px;
    border-bottom: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
}
.corner-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
}

.hf-footer {
  color: #000;
  background: rgba(85, 87, 88, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E4E6EB;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.hf-footer a { 
  color: #000; 
  text-decoration: none; 
}
.hf-footer a:hover { 
  color: #D2AD67; 
}
.hf-heading {
  color: #D2AD67;
  letter-spacing: .02em;
  margin-bottom: .75rem;
}
.ft-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
#ft-container01, #ft-container02 {
  border-right: 1px solid rgba(251, 250, 246, 0.12);
}
#mailto01 {
  overflow-wrap: break-word;
}
.mb-2 h6 {
  font-weight: bold;
}
.col-md-4.mb-4 {
  margin: 0;
}
.hf-hours li {
  display: flex;
  justify-content: space-between;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hf-hours li:last-child { 
  border-bottom: 0; 
}
.hf-hours .day { 
  font-weight: 600; 
}
.hf-hours .time { 
  opacity: .8; 
}
.btn-gold {
  background: linear-gradient(135deg,#C7A24F,#E4CA7A);
  color: #fff;
  border: 0; 
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 14px rgba(199,162,79,.22);
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.btn-gold:hover { 
  filter: brightness(1.05); 
  transform: translateY(-2px); 
}
.social-icon {
  margin-left: 0;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.social-icon img {
  margin-right: 10px;
  border-radius: 50%;
}
.hf-social-link {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.hf-social-link:hover {
  transform: translateY(-2px);
  border-color: #D2AD67;
  color: #111;
}

@media (max-width: 768px) {
    .visa-card-header,
    .non-immigrant-header {
        flex-direction: column;
        text-align: center;
    }
    .visa-card-description,
    .visa-features {
        padding-left: 0;
    }
    .visa-card-main,
    .non-immigrant-section {
        padding: 30px 25px;
    }
    .cta-container {
        padding: 40px 25px;
    }
    .corner-decoration {
        width: 40px;
        height: 40px;
    }
    #ft-container01, #ft-container02 {
        max-width: 490px;
        border-bottom: 1px solid rgba(251, 250, 246, 0.12);
        border-right: none;
        padding-bottom: 15px;
    }

}