
    /* =====================================================
       CSS CUSTOM PROPERTIES (Design Tokens)
    ===================================================== */
    :root {
      --primary:        #4E6766;
      --primary-dark:   #3a4f4e;
      --primary-light:  #6a8887;
      --accent:         #c9a96e;      /* warm gold accent */
      --light:          #E8E8E8;
      --white:          #ffffff;
      --dark:           #1a1a1a;
      --text-body:      #3d3d3d;
      --text-muted:     #6c757d;
      --shadow-sm:      0 2px 12px rgba(78,103,102,.12);
      --shadow-md:      0 6px 32px rgba(78,103,102,.18);
      --shadow-lg:      0 16px 56px rgba(78,103,102,.22);
      --radius-sm:      8px;
      --radius-md:      16px;
      --radius-lg:      24px;
      --transition:     all .32s cubic-bezier(.4,0,.2,1);
      --font-display:   'Playfair Display', serif;
      --font-body:      'DM Sans', sans-serif;
      --navbar-height:  72px;
    }

    /* =====================================================
       GLOBAL RESET & BASE
    ===================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text-body);
      background: var(--white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 { font-family: var(--font-display); }

    a { text-decoration: none; color: inherit; }

    img { max-width: 100%; display: block; }

    /* =====================================================
       UTILITY CLASSES
    ===================================================== */
    .section-gap { padding: 96px 0; }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.2;
    }

    .section-title span { color: var(--primary); }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 560px;
    }

    .divider-line {
      width: 56px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 4px;
      margin: 16px 0 24px;
    }


    /* =====================================================
       NAVBAR
    ===================================================== */
    #mainNav {
      height: var(--navbar-height);
      background: rgba(255,255,255,.0);
      backdrop-filter: blur(0);
      transition: var(--transition);
      padding: 0 24px;
      z-index: 1050;
    }

    #mainNav.scrolled {
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow-sm);
    }

    /* Logo text */
    .navbar-brand .brand-name {
      font-family: var(--font-display), serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -.5px;
      transition: var(--transition);
    }
    .navbar-brand .brand-name span { color: var(--primary-dark); }

    #mainNav.scrolled .navbar-brand .brand-name { color: var(--dark); }

    /* Nav links */
    .nav-link-custom {
      font-size: .9rem;
      font-weight: 500;
      color: var(--dark) !important;
      padding: 6px 14px !important;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      position: relative;
    }

    .nav-link-custom::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 50%;
      width: 0; height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transform: translateX(-50%);
      transition: var(--transition);
    }

    .nav-link-custom:hover { color: var(--white) !important; }
    .nav-link-custom:hover::after { width: 60%; }

    #mainNav.scrolled .nav-link-custom { color: var(--text-body) !important; }
    #mainNav.scrolled .nav-link-custom:hover { color: var(--primary) !important; }

    /* Hamburger */
    .navbar-toggler { border: none; color: var(--white);}
    #mainNav.scrolled .navbar-toggler { color: var(--primary-dark);}
    .navbar-toggler:focus { box-shadow: none; }

    /* =====================================================
       HERO SECTION
    ===================================================== */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      background: url('photos/discephe.jpeg') center/cover no-repeat;
    }

    /* Dark overlay */
    #hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg,
);
    }

    .hero-content { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,169,110,.18);
      border: 1px solid rgba(201,169,110,.4);
      color: var(--accent);
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero-title em {
      font-style: normal;
      color: var(--accent);
      position: relative;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--dark);
      max-width: 540px;
      margin-bottom: 36px;
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 40px; left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,.6);
      font-size: .75rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .hero-scroll .scroll-dot {
      width: 28px; height: 44px;
      border: 2px solid rgba(255,255,255,.4);
      border-radius: 20px;
      position: relative;
    }

    .hero-scroll .scroll-dot::after {
      content: '';
      width: 5px; height: 5px;
      background: var(--accent);
      border-radius: 50%;
      position: absolute;
      top: 8px; left: 50%;
      transform: translateX(-50%);
      animation: scrollBounce 1.8s infinite;
    }

    @keyframes scrollBounce {
      0%, 100% { top: 8px; opacity: 1; }
      80%       { top: 24px; opacity: .2; }
    }

    /* =====================================================
       BUTTONS
    ===================================================== */
    .btn-primary-custom {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: var(--white);
      border: none;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .3px;
      transition: var(--transition);
      box-shadow: 0 4px 18px rgba(78,103,102,.35);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(78,103,102,.45);
      color: var(--white);
    }

    .btn-accent-custom {
      background: linear-gradient(135deg, var(--dark), var(--primary-dark));
      color: var(--white);
      border: none;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: .3px;
      transition: var(--transition);
      box-shadow: 0 4px 18px rgba(201,169,110,.35);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-accent-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 10px var(--primary-dark);
      color: var(--white);
    }

    .btn-outline-custom {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.5);
      padding: 11px 26px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: .95rem;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-outline-custom:hover {
      background: rgba(255,255,255,.12);
      border-color: var(--white);
      color: var(--white);
      transform: translateY(-3px);
    }

    /* =====================================================
       ABOUT SECTION
    ===================================================== */
    #about {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    /* Decorative background shape */
    #about::before {
      content: '';
      position: absolute;
      top: -80px; right: -120px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(78,103,102,.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .about-img-wrapper {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .about-img-wrapper img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.4,0,.2,1);
    }

    .about-img-wrapper:hover img { transform: scale(1.04); }

    /* Floating badge on image */
    .about-img-badge {
      position: absolute;
      bottom: 24px; left: 24px;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 14px 20px;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .about-img-badge .badge-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .about-img-badge .badge-text strong {
      display: block;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark);
      line-height: 1;
    }

    .about-img-badge .badge-text span {
      font-size: .78rem;
      color: var(--text-muted);
    }

    /* Mission / Vision cards */
    .mv-card {
      background: var(--white);
      border: 1px solid var(--light);
      border-radius: var(--radius-md);
      padding: 26px 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .mv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: linear-gradient(180deg, var(--primary), var(--accent));
      border-radius: 4px 0 0 4px;
    }

    .mv-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }

    .mv-card .card-icon {
      width: 52px; height: 52px;
      background: rgba(78,103,102,.1);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 16px;
    }

    .mv-card h4 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .mv-card p {
      font-size: .93rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }

    /* Stats bar inside about */
    .stat-item { text-align: center; }
    .stat-number {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1;
      display: block;
    }
    .stat-label {
      font-size: .83rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* =====================================================
       DORM INFO SECTION
    ===================================================== */
    #dorm {
      background: linear-gradient(180deg, var(--light) 0%, #f0f0f0 100%);
      position: relative;
    }

    .dorm-main-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .dorm-main-img img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }

    /* Overlay tag on dorm image */
    .dorm-img-tag {
      position: absolute;
      top: 20px; left: 20px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--white);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .5px;
    }

    .dorm-info-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      height: 100%;
      border: 1px solid rgba(78,103,102,.1);
    }

    .dorm-info-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .dorm-info-card .card-header-custom {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--light);
    }

    .dorm-info-card .card-icon-bg {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .dorm-info-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0;
    }

    .dorm-info-card p {
      font-size: .93rem;
      color: var(--text-body);
      line-height: 1.75;
    }

    /* Service list */
    .service-list { list-style: none; padding: 0; margin: 0; }

    .service-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--light);
      font-size: .92rem;
      font-weight: 500;
      color: var(--text-body);
      transition: var(--transition);
    }

    .service-list li:last-child { border-bottom: none; }

    .service-list li:hover { color: var(--primary); padding-left: 6px; }

    .service-list li .service-icon {
      width: 34px; height: 34px;
      background: rgba(78,103,102,.1);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: .85rem;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .service-list li:hover .service-icon {
      background: var(--primary);
      color: var(--white);
    }

    /* =====================================================
       GALLERY SECTION
    ===================================================== */
    #gallery {
      background: var(--white);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    /* Make 1st item span 2 columns on desktop for visual interest */
    .gallery-item:first-child { grid-column: span 2; }

    .gallery-item {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
    }

    .gallery-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform .5s cubic-bezier(.4,0,.2,1);
      display: block;
    }

    .gallery-item:first-child img { height: 312px; }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg,
        rgba(78,103,102,.0) 0%,
        rgba(20,32,32,.72) 100%);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .gallery-caption {
      color: var(--white);
      font-weight: 600;
      font-size: .92rem;
      transform: translateY(10px);
      transition: var(--transition);
    }

    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-item:hover .gallery-caption { transform: translateY(0); }

    @media (max-width: 767px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-item:first-child { grid-column: span 2; }
    }

    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: span 1; }
    }

    /* =====================================================
       CONTACT SECTION
    ===================================================== */
    #contact {
      background: linear-gradient(180deg, #f5f5f5 0%, var(--white) 100%);
    }

    .contact-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 30px 26px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(78,103,102,.1);
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }

    .contact-card .contact-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .contact-card h5 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--dark);
      margin: 0 0 4px;
    }

    .contact-card p, .contact-card a {
      font-size: .92rem;
      color: var(--text-muted);
      margin: 0;
    }

    .contact-card a:hover { color: var(--primary); }

    /* Map */
    .map-wrapper {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 4px solid var(--white);
    }

    .map-wrapper iframe {
      display: block;
      width: 100%;
      height: 400px;
      border: none;
      filter: grayscale(20%);
    }

    /* =====================================================
       FOOTER
    ===================================================== */
    #footer {
      background: linear-gradient(135deg, var(--primary-dark) 0%, #2a3a39 100%);
      color: rgba(255,255,255,.8);
      padding: 72px 0 0;
    }

    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 1.14rem;
      font-weight: 770;
      color: var(--white);
    }

    .footer-brand-name span { color: var(--accent); }

    .footer-desc {
      font-size: .9rem;
      color: rgba(255,255,255,.65);
      line-height: 1.7;
      margin: 14px 0 20px;
    }

    .footer-check-list { list-style: none; padding: 0; margin: 0; }

    .footer-check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .87rem;
      color: rgba(255,255,255,.7);
      margin-bottom: 8px;
    }

    .footer-check-list li i {
      color: var(--accent);
      font-size: .85rem;
    }

    .footer-heading {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 12px;
    }

    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 32px; height: 2px;
      background: var(--accent);
      border-radius: 2px;
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }

    .footer-links li { margin-bottom: 10px; }

    .footer-links a {
      font-size: .9rem;
      color: rgba(255,255,255,.65);
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links a i { font-size: .7rem; color: var(--accent); }

    .footer-links a:hover { color: var(--white); padding-left: 4px; }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }

    .footer-contact-item .fi-icon {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.08);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: .9rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-contact-item .fi-text strong {
      display: block;
      font-size: .8rem;
      font-weight: 600;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 2px;
    }

    .footer-contact-item .fi-text span,
    .footer-contact-item .fi-text a {
      font-size: .9rem;
      color: rgba(255,255,255,.8);
    }

    .footer-contact-item .fi-text a:hover { color: var(--accent); }

    /* Bank info box */
    .bank-info-box {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-md);
      padding: 18px 20px;
    }

    .bank-row {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .bank-field strong {
      display: block;
      font-size: .75rem;
      font-weight: 600;
      color: rgba(255,255,255,.45);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 3px;
    }

    .bank-field span {
      font-size: .9rem;
      color: rgba(255,255,255,.85);
      font-weight: 500;
    }

    .iban-copy {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.08);
      border-radius: 8px;
      padding: 8px 12px;
      cursor: pointer;
      transition: var(--transition);
      border: 1px dashed rgba(255,255,255,.2);
    }

    .iban-copy:hover { background: rgba(255,255,255,.14); }

    .iban-copy span {
      font-size: .644rem;
      font-family: 'Courier New', monospace;
      color: var(--accent);
      word-break: break-all;
      flex: 1;
    }

    .iban-copy i { color: rgba(255,255,255,.5); font-size: .9rem; }

    /* Footer bottom bar */
    .footer-bottom {
      margin-top: 56px;
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-bottom p {
      font-size: .83rem;
      color: rgba(255,255,255,.4);
      margin: 0;
    }

    .footer-bottom a {
      color: var(--accent);
      font-weight: 600;
      transition: var(--transition);
    }

    .footer-bottom a:hover { color: var(--white); }

    /* =====================================================
       DONATION MODAL
    ===================================================== */
    .modal-content {
      border-radius: var(--radius-lg);
      border: none;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .modal-header-custom {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--white);
      padding: 24px 28px;
      border-bottom: none;
    }

    .modal-header-custom h5 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .modal-header-custom .btn-close {
      filter: invert(1);
      opacity: .7;
    }

    .modal-header-custom .btn-close:hover { opacity: 1; }

    .modal-body-custom { padding: 32px 28px; }

    .modal-note {
      background: rgba(78,103,102,.07);
      border-left: 4px solid var(--primary);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      padding: 14px 18px;
      font-size: .9rem;
      color: var(--text-body);
      margin-bottom: 24px;
      line-height: 1.6;
    }

    .modal-bank-field {
      background: #f8f9fa;
      border-radius: var(--radius-sm);
      padding: 16px 18px;
      margin-bottom: 14px;
      border: 1px solid var(--light);
    }

    .modal-bank-field label {
      font-size: .75rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .8px;
      display: block;
      margin-bottom: 4px;
    }

    .modal-bank-field .field-value {
      font-size: 1rem;
      font-weight: 600;
      color: var(--dark);
    }

    .modal-bank-field .iban-val {
      font-family: 'Courier New', monospace;
      font-size: .95rem;
      color: var(--primary-dark);
      word-break: break-all;
    }

    /* =====================================================
       SCROLL-TO-TOP BUTTON
    ===================================================== */
    #scrollTop {
      position: fixed;
      bottom: 32px; right: 32px;
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: var(--white);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      box-shadow: var(--shadow-md);
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: var(--transition);
      z-index: 999;
    }

    #scrollTop.visible {
      opacity: 1;
      transform: translateY(0);
    }

    #scrollTop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    /* =====================================================
       FADE-IN ANIMATION (Intersection Observer)
    ===================================================== */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Staggered delay helpers */
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }
    .delay-5 { transition-delay: .5s; }

    /* =====================================================
       RESPONSIVE TWEAKS
    ===================================================== */
    @media (max-width: 991px) {
      .section-gap { padding: 72px 0; }
      .about-img-wrapper img { height: 360px; }
      .dorm-main-img img { height: 300px; }
    }

    @media (max-width: 767px) {
      .section-gap { padding: 56px 0; }
      .hero-title { font-size: 2.2rem; }
      .about-img-wrapper img { height: 280px; }
      .gallery-item img, .gallery-item:first-child img { height: 200px; }
    }

    /* Profesyonel Blur Efektli Mobil Hamburger Menü */
@media (max-width: 991px) {

  #mainNav.scrolled .nav-link-custom { color:#ffffff !important;}
  #mainNav.scrolled .nav-link-custom:hover { color: #ffffff !important; }
    .navbar-collapse{
        margin-top: 15px;
        padding: 22px;
        border-radius: 20px;

        background: rgba(78, 103, 102, 0.78);

        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);

        border: 1px solid rgba(255, 255, 255, 0.12);

        box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.30);

        animation: menuFade 0.35s ease;

        overflow: hidden;
    }

    .navbar-nav{
        gap: 12px;
    }

    .navbar-nav .nav-link{
        color: #ffffff !important;
        font-size: 17px;
        font-weight: 500;

        padding: 14px 16px;
        border-radius: 14px;

        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover{
        background: rgba(255,255,255,0.10);
        transform: translateX(5px);
    }

    .navbar-toggler{
        border: none;
        box-shadow: none !important;
    }

    .navbar-toggler:focus{
        box-shadow: none;
    }

}

/* Menü Açılış Animasyonu */
@keyframes menuFade{

    from{
        opacity: 0;
        transform: translateY(-12px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}



  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Lato:wght@300;400;700&display=swap');

  .cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 16px;
    box-sizing: border-box;
  }

  .cta-section {
    position: relative;
    width: 100%;
    max-width: 1000px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    box-sizing: border-box;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1a19 0%, #1a2e2d 35%, #243f3e 65%, #1c2f2e 100%);
    z-index: 0;
  }

  .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.65) 100%);
    z-index: 1;
  }

  .cta-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      45deg, transparent, transparent 40px,
      rgba(201,169,110,0.03) 40px, rgba(201,169,110,0.03) 41px
    );
    z-index: 2;
  }

  .cta-arch-left {
    position: absolute;
    left: -60px; top: 50%;
    transform: translateY(-50%);
    width: 180px; height: 260px;
    border: 1px solid rgba(201,169,110,0.1);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 2;
  }

  .cta-arch-right {
    position: absolute;
    right: -60px; top: 50%;
    transform: translateY(-50%);
    width: 150px; height: 220px;
    border: 1px solid rgba(106,136,135,0.08);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    z-index: 2;
  }

  .cta-circle-top {
    position: absolute;
    top: -70px; right: 10%;
    width: 200px; height: 200px;
    border: 1px solid rgba(201,169,110,0.06);
    border-radius: 50%;
    z-index: 2;
  }

  .cta-circle-bottom {
    position: absolute;
    bottom: -80px; left: 8%;
    width: 160px; height: 160px;
    border: 1px solid rgba(78,103,102,0.07);
    border-radius: 50%;
    z-index: 2;
  }

  .cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 52px 40px;
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.18;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
    animation: fadeUp 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .cta-title em {
    font-style: italic;
    color: #c9a96e;
  }

  .cta-divider {
    width: 44px; height: 2px;
    background: linear-gradient(90deg, rgba(201,169,110,0.8), rgba(201,169,110,0.1));
    margin: 0 auto 18px;
    border-radius: 2px;
    animation: fadeUp 0.9s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .cta-desc {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin: 0 0 36px;
    animation: fadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both ;
  }

  .btn2 {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
    text-decoration: none;
    display: inline-block;
    outline: none;
  }

  .btn-primary {
    background: #c9a96e;
    color: #1a1208;
    border: 1.5px solid #c9a96e;
  }

  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
  .btn-primary:active { transform: scale(0.97); opacity: 1; }

  .btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.28);
  }

  .btn-outline:hover { opacity: 0.8 !important; transform: translateY(-1px) !important; }
  .btn-outline:active { transform: scale(0.97) !important; opacity: 1 !important; }

  @media (max-width: 768px) {
    .cta-wrapper { padding-top: 30px !important; }
    .cta-section {
      border-radius: 20px;
      max-width: 100%;
      min-height: 400px;
    }
    .cta-content { padding: 48px 24px; }
    .cta-buttons { flex-direction: column; gap: 12px; }
    .btn { width: 100%; text-align: center; }
  }
