/* ============================================
   KANCELARIA NOTARIALNA - STYLES
   Kolorystyka: Ciemny szary + Złoty
   ============================================ */

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

:root {
    --dark: #3d3d3d;
    --darker: #2a2a2a;
    --gold: #C8A96A;
    --gold-light: #d4b580;
    --gold-dark: #b59556;
    --light: #f5f5f5;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-gray: #666666;
    --border: #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ============================================
   HEADER
   ============================================ */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-top {
    background: var(--dark);
    color: var(--white);
    padding: 0.6rem 0;
    font-size: 0.9rem;
}

.header-top-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact {
    display: flex;
    gap: 2rem;
}

.header-contact a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.header-contact a:hover {
    opacity: 1;
}

.header-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container svg {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

nav a:hover::after {
    width: 100%;
}

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

/* =========================================================
   HERO – PREMIUM NOTARY
   ========================================================= */

.hero-premium {
  position: relative;
  min-height: 92vh;
  background: url('/projects/notariusz/assets/images/hero_bg.png') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  
}
.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/projects/notariusz/assets/images/hero_bg.png') center / cover no-repeat;
  transform: scale(1);
  animation: heroBreath 18s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}

/* OVERLAY – SUBTELNY, CIEMNY, SZARY */
.hero-premium .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.55)
    );
  z-index: 1;
}

/* PARALLAX (DELIKATNY, BEZ JS) */
@media (min-width: 1024px) {
  .hero-premium {
    background-attachment: fixed;
  }
}

/* CONTENT */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

/* LOGO */
.hero-logo img {
  width: 220px;
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  opacity: 0;
  animation: fadeUp 1.1s ease forwards;
}
@keyframes heroBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.03);
  }
}
/* TYPOGRAFIA */
.hero-copy h1 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* WIĘKSZY ODDECH MIĘDZY LINIAMI */
}

.hero-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.15s;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.4rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* PODTYTUŁ – MNIEJSZY, LEPSZA HIERARCHIA */
.hero-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.45s;
}

/* =========================================================
   NAV STRIP – override globalnych .section (gap/padding)
   ========================================================= */

/* jeśli nav-strip ma też klasę .section, to to go wyczyści */
.nav-strip.section{
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* nawet jeśli nie ma .section, to i tak wymuś ciasny pasek */
.nav-strip{
  display: block;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 !important;
  margin: 0 !important;
}

/* poprawione paddingi (u Ciebie były "0 rem 1 rem" = błąd) */
.nav-strip-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1rem; /* wysokość paska */
}

/* nav bez dzikich odstępów */
.nav-strip-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 6vw, 6rem); /* zamiast 16.5rem */
}

/* linki */
.nav-strip-nav a{
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2c2c2c;
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
}

.nav-strip-nav a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: #C8A96A;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-strip-nav a:hover::after{
  width: 100%;
}


/* =========================================================
   ANIMACJE – SUBTELNE
   ========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 968px) {
  .hero-name {
    font-size: 2.9rem;
    letter-spacing: 0.1em;
  }

  .hero-kicker {
    font-size: 1.6rem;
  }

  .hero-logo img {
    width: 180px;
  }
}

@media (max-width: 640px) {
  .hero-name {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .nav-strip-nav {
    flex-wrap: wrap;
    gap: 1.6rem;
  }
}



/* ============================================
   DIAGONAL DIVIDER
   ============================================ */
.diagonal-divider {
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 6rem 2rem;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
}

.section-label {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--white);
    padding: 6rem 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(200, 169, 106, 0.4);
}

.badge-years {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 0.5rem;
}

.about-content {
    padding: 2rem 0;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-credentials {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.credential-item svg {
    flex-shrink: 0;
    fill: var(--gold);
}

.credential-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION - STAGGERED GRID
   ============================================ */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--light);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(even) {
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
    background: var(--white);
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    transition: all 0.4s;
}

.service-card:hover .service-number {
    opacity: 0.4;
    transform: scale(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 30px rgba(200, 169, 106, 0.4);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.service-card li {
    padding: 0.4rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    background: var(--dark);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20rem;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(200, 169, 106, 0.05);
    line-height: 1;
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-author {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   TOOLS SECTION - SIDE BY SIDE
   ============================================ */
.tools {
    background: var(--light);
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.tool-container {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.tool-container:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.tool-header {
    background: var(--dark);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tool-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 106, 0.2), transparent);
    transition: left 0.6s;
}

.tool-container:hover .tool-header::before {
    left: 100%;
}

.tool-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tool-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.tool-body {
    padding: 2.5rem;
}

.tool-select {
    margin-bottom: 2rem;
}

.tool-select label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.tool-select select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    background: var(--light);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
}

.tool-select select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

/* ============================================
   CHECKLIST
   ============================================ */
.checklist {
    display: none;
    margin-top: 2rem;
    padding: 2.5rem;
    background: var(--light);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.checklist.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.checklist h4 {
    font-size: 1.6rem;
    color: var(--dark);
}

.pdf-button {
    padding: 0.8rem 1.5rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-family: inherit;
}

.pdf-button:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 169, 106, 0.3);
}

.pdf-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.3s;
}

.checklist-item:hover {
    border-color: var(--gold);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.checklist-item input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold);
}

.checklist-item label {
    cursor: pointer;
    flex: 1;
}

.checklist-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(200, 169, 106, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
}

.checklist-note strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* ============================================
   CALCULATOR
   ============================================ */
.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.calc-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-field label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.calc-field input,
.calc-field select {
    padding: 0.9rem;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: inherit;
    background: var(--light);
    transition: all 0.3s;
    border-radius: 8px;
}

.calc-field input:focus,
.calc-field select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.calc-result {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    display: none;
    border-radius: 8px;
}

.calc-result.active {
    display: block;
    animation: slideIn 0.5s ease;
}

.calc-result-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.calc-result-amount {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
}

.calc-result-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.calc-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    border-radius: 8px;
}

.calc-button:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(200, 169, 106, 0.3);
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-card {
    background: var(--light);
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.info-card h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-card h3 svg {
    fill: var(--gold);
}

.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid var(--border);
}

.hours-table td {
    padding: 1rem 0;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-gray);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.contact-content strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.contact-content span,
.contact-content a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-content a:hover {
    color: var(--gold);
}

/* ============================================
   FAQ SECTION - TIMELINE
   ============================================ */
.faq {
    background: var(--light);
}

.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.faq-list::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    opacity: 0.3;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    padding-left: 80px;
    border-radius: 8px;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    z-index: 1;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
    font-weight: 400;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 500px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo svg {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-about p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero {
        background-attachment: scroll;
    }
        
    }
    

/* Responsive Hero Updates */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .hero-logo {
        max-width: 500px;
    }
}

@media (max-width: 968px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .hero-text .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-logo {
        max-width: 300px;
    }
}