/* 
   Fikirtepe Öğrenci Yurdu - Custom Premium Design System
   Colors: Navy (#1F2230), Gold (#B59D6E), Support Colors
   Typography: Montserrat
*/

/* --- CSS Variables & Reset --- */
:root {
    --primary-navy: #1F2230;
    --primary-navy-rgb: 31, 34, 48;
    --primary-gold: #B59D6E;
    --primary-gold-hover: #9c8355;
    --primary-gold-rgb: 181, 157, 110;
    
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-gray: #EAEAEA;
    --dark-gray: #5F6470;
    --body-text: #333333;
    
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1fad53;
    
    --font-primary: 'Montserrat', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 20px 40px rgba(31, 34, 48, 0.08);
    --border-radius-lg: 24px;
    --border-radius-sm: 12px;
}

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

body {
    font-family: var(--font-primary);
    color: var(--body-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--primary-navy);
    font-weight: 700;
}

p {
    font-weight: 400;
    color: var(--dark-gray);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--primary-gold) !important;
}

/* --- Section Styling Base --- */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: var(--dark-gray);
}

/* Star Divider Form */
.star-divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.star-divider-container::before,
.star-divider-container::after {
    content: '';
    height: 1px;
    width: 60px;
    background-color: rgba(181, 157, 110, 0.3);
}

.star-svg-divider {
    color: var(--primary-gold);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 99px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(181, 157, 110, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(181, 157, 110, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

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

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Bottom Info Bar (Sticky/Fixed) --- */
body {
    padding-bottom: 60px; /* Offset to prevent bottom bar from overlapping content at the bottom */
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background-color: rgba(31, 34, 48, 0.95);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.bottom-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.bottom-bar-left, .bottom-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bottom-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.bottom-bar-btn i, .bottom-bar-btn svg {
    width: 14px;
    height: 14px;
    color: var(--primary-gold);
}

.bottom-bar-btn:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.bottom-bar-btn:hover i, .bottom-bar-btn:hover svg {
    color: var(--white);
}

.bottom-bar-btn.whatsapp-btn {
    background-color: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.25);
    color: #4cd97b;
}

.bottom-bar-btn.whatsapp-btn i, .bottom-bar-btn.whatsapp-btn svg {
    color: #4cd97b;
}

.bottom-bar-btn.whatsapp-btn:hover {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
    color: var(--white);
}

.bottom-bar-btn.whatsapp-btn:hover i, .bottom-bar-btn.whatsapp-btn:hover svg {
    color: var(--white);
}

.btn-text-mobile {
    display: none;
}

/* --- Sticky Header / Navbar --- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

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

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-smooth);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-horizontal {
    filter: brightness(0) invert(1);
}

.brand-text {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
}

.brand-text .sub-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle button */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    z-index: 1100;
}

.mobile-toggle .bar {
    width: 26px;
    height: 2.5px;
    background-color: var(--white);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* Scroll Header Styles */
.header.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header.scrolled .logo {
    color: var(--primary-navy);
}

.header.scrolled .logo-horizontal {
    filter: none;
}

.header.scrolled .nav-link {
    color: var(--primary-navy);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-gold);
}

.header.scrolled .mobile-toggle .bar {
    background-color: var(--primary-navy);
}

/* Active Mobile Menu Icon animation */
.mobile-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-navy);
    z-index: 999;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.mobile-nav-overlay.is-active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition-smooth);
    display: block;
    padding: 10px 0;
}

.mobile-nav-link:hover {
    color: var(--primary-gold);
}

.mobile-cta-li {
    margin-top: 15px;
}

/* --- Hero Section --- */
.hero-section {
    height: 95vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: zoomHero 20s infinite alternate ease-in-out;
}

@keyframes zoomHero {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(31, 34, 48, 0.9) 0%, rgba(31, 34, 48, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    margin-top: -40px;
}

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(181, 157, 110, 0.15);
    color: var(--primary-gold);
    padding: 8px 18px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(181, 157, 110, 0.3);
    margin-bottom: 24px;
}

.star-svg {
    animation: rotateSlow 15s linear infinite;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 650px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating Hero Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-gray);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    z-index: 10;
    padding: 30px 0;
}

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

.stat-box {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: var(--border-gray);
}

/* --- Bento Grid / About --- */
.about-section {
    background-color: var(--light-gray);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    margin-top: 50px;
}

.bento-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(181, 157, 110, 0.3);
}

.bento-card-large {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-card-horizontal {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.bento-card-horizontal .bento-card-content {
    flex: 1;
}

.bento-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(181, 157, 110, 0.1);
    color: var(--primary-gold);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.bento-card-horizontal .bento-card-icon {
    margin-bottom: 0;
}

.bento-card-icon i, .bento-card-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.bento-card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.bento-card-content p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.bento-list {
    list-style: none;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
}

.bento-list li {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.bento-list li i, .bento-list li svg {
    color: var(--primary-gold);
    width: 16px;
    height: 16px;
}

/* --- Yaşam Alanları Swiper Slideshow --- */
.living-spaces-section {
    background-color: var(--white);
    padding: 100px 0;
}

.living-spaces-swiper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 550px;
    border: 1px solid var(--border-gray);
    margin-top: 40px;
}

.space-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.space-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.space-slide:hover .space-slide-img {
    transform: scale(1.05);
}

.space-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(31, 34, 48, 0.95) 0%, rgba(31, 34, 48, 0.5) 60%, rgba(31, 34, 48, 0.1) 100%);
    display: flex;
    align-items: center;
    padding: 60px;
    z-index: 2;
}

.space-slide-content {
    max-width: 500px;
    color: var(--white);
    text-align: left;
}

.space-slide-content .space-badge {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 20px;
}

.space-slide-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.space-slide-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Custom Swiper Styles for Living Spaces */
.living-spaces-pagination {
    bottom: 30px !important;
}

.living-spaces-pagination .swiper-pagination-bullet {
    background-color: var(--white);
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: var(--transition-smooth);
}

.living-spaces-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-gold);
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

.living-spaces-next, .living-spaces-prev {
    color: var(--white) !important;
    transition: var(--transition-smooth);
}

.living-spaces-next:hover, .living-spaces-prev:hover {
    color: var(--primary-gold) !important;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .living-spaces-swiper {
        height: 420px;
    }
    
    .space-slide-overlay {
        background: linear-gradient(to bottom, transparent 40%, rgba(31, 34, 48, 0.95) 100%);
        align-items: flex-end;
        padding: 20px 20px 48px 20px;
    }
    
    .living-spaces-pagination {
        bottom: 15px !important;
    }
    
    .space-slide-content {
        text-align: center;
        width: 100%;
    }
    
    .space-slide-content .space-badge {
        display: none !important;
    }
    
    .space-slide-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .space-slide-content p {
        display: none !important;
    }
    
    .space-slide-content .btn-whatsapp {
        padding: 6px 12px !important;
        font-size: 12px !important;
        width: auto !important;
        display: inline-flex !important;
    }
}

/* --- Location & Transport Section --- */
.location-section {
    background-color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    grid-gap: 50px;
    margin-top: 40px;
}

.transit-panel {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-gray);
}

.transit-panel h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.transit-intro {
    font-size: 14px;
    margin-bottom: 30px;
}

.transit-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transit-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.transit-card:hover {
    transform: translateX(5px);
    border-color: rgba(181, 157, 110, 0.3);
    box-shadow: var(--shadow-soft);
}

.tc-logo {
    width: 44px;
    height: 44px;
    background-color: rgba(31, 34, 48, 0.05);
    color: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-logo i, .tc-logo svg {
    width: 20px;
    height: 20px;
}

.tc-details {
    flex: 1;
    margin-left: 16px;
}

.tc-details h4 {
    font-size: 14px;
    font-weight: 700;
}

.tc-details p {
    font-size: 12px;
}

.tc-time {
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 99px;
}

.gold-badge {
    background-color: rgba(181, 157, 110, 0.1);
    color: var(--primary-gold);
    border: 1px solid rgba(181, 157, 110, 0.2);
}

.transit-footer-info {
    margin-top: 30px;
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
}

.metro-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--primary-navy);
}

.metro-info i, .metro-info svg {
    width: 22px;
    height: 22px;
}

/* Map Card Panel */
.map-panel {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-gray);
    position: relative;
    height: 520px;
}

.map-card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background-color: rgba(31, 34, 48, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.map-overlay-card h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 16px;
}

.map-overlay-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin-bottom: 16px;
}

/* --- Gallery Section --- */
.gallery-section {
    background-color: var(--light-gray);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    color: var(--primary-navy);
    padding: 10px 24px;
    border-radius: 99px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

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

.gallery-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 34, 48, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--white);
    gap: 12px;
}

.gallery-hover span {
    font-weight: 700;
    font-size: 16px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-hover i, .gallery-hover svg {
    width: 24px;
    height: 24px;
    color: var(--primary-gold);
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

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

.gallery-img-wrapper:hover .gallery-hover {
    opacity: 1;
}

.gallery-img-wrapper:hover .gallery-hover span,
.gallery-img-wrapper:hover .gallery-hover i,
.gallery-img-wrapper:hover .gallery-hover svg {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomLightbox 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes zoomLightbox {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary-gold);
}

.lightbox-caption {
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
    font-weight: 600;
    font-size: 15px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-swiper {
    padding: 30px 0 60px 0;
    max-width: 900px;
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-gray);
    position: relative;
    text-align: center;
}

.quote-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-gold);
}

.quote-icon i, .quote-icon svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
    color: var(--primary-navy);
    font-weight: 500;
    margin-bottom: 30px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.user-avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--primary-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--primary-gold);
}

.user-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 12px;
    color: var(--dark-gray);
    font-weight: 600;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-gold) !important;
}

/* --- FAQ Accordion --- */
.faq-section {
    background-color: var(--light-gray);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(181, 157, 110, 0.3);
    box-shadow: var(--shadow-soft);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
    text-align: left;
    outline: none;
}

.accordion-header span {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-navy);
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.accordion-header:hover span {
    color: var(--primary-gold);
}

.faq-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #FAFBFB;
}

.accordion-body p {
    padding: 0 30px 24px 30px;
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Open states */
.accordion-item.is-open {
    border-color: var(--primary-navy);
}

.accordion-item.is-open .faq-icon {
    transform: rotate(45deg);
}

/* --- Contact & Application --- */
.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-gap: 50px;
    margin-top: 40px;
}

.contact-form-card {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-gray);
}

.contact-form-card h3,
.contact-details-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-primary);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-gray);
    background-color: var(--white);
    font-size: 14px;
    color: var(--primary-navy);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(181, 157, 110, 0.15);
}

.kvkk-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
}

.kvkk-checkbox input {
    margin-top: 4px;
}

.kvkk-checkbox a {
    color: var(--primary-gold);
    text-decoration: underline;
    font-weight: 600;
}

.form-status {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green-hover);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.form-status.error {
    display: block;
    background-color: rgba(228, 5, 31, 0.1);
    color: #e4051f;
    border: 1px solid rgba(228, 5, 31, 0.2);
}

/* Details card */
.contact-details-card {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.contact-details-card h3 {
    color: var(--white);
}

.contact-intro-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 30px;
}

.detail-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.di-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.di-icon i, .di-icon svg {
    width: 22px;
    height: 22px;
}

.di-text {
    display: flex;
    flex-direction: column;
}

.di-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 700;
}

.di-text strong,
.di-text .wa-link {
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.di-text .wa-link:hover {
    color: var(--primary-gold);
}

.quick-whatsapp-cta {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.quick-whatsapp-cta h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
}

.quick-whatsapp-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 20px;
}

.text-whatsapp {
    color: var(--whatsapp-green) !important;
}

/* --- Footer --- */
.footer {
    background-color: var(--primary-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    grid-gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-brand-col p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.footer-socials i, .footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-info i, .footer-contact-info svg {
    color: var(--primary-gold);
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 15px;
}

.developer-credit {
    font-weight: 600;
    color: var(--primary-gold);
}

/* --- Responsive Adjustments --- */

/* Tablet & Smaller */
@media (max-width: 1024px) {
    .header {
        top: 0;
    }
    
    .hero-section {
        height: auto;
        padding: 160px 0 100px 0;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .bento-card-large {
        grid-column: span 2;
    }
    
    .bento-card-horizontal {
        grid-column: span 2;
    }
    
    .room-showcase {
        grid-template-columns: 1fr;
    }
    
    .room-image-pane {
        min-height: 350px;
    }
    
    .etut-wrapper {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
    
    .etut-image-pane {
        height: 380px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    body {
        padding-bottom: 58px; /* Offset for sticky bottom bar on mobile */
    }
    
    .bottom-bar {
        padding: 6px 0;
    }
    
    .bottom-bar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        width: 100%;
        max-width: 100%;
        padding: 0 6px;
    }
    
    .bottom-bar-left, .bottom-bar-right {
        display: contents;
    }
    
    .bottom-bar-btn {
        flex: 1;
        padding: 8px 4px;
        font-size: 11px;
        justify-content: center;
        white-space: nowrap;
        gap: 4px;
        border-radius: 6px;
    }
    
    .bottom-bar-btn i, .bottom-bar-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .btn-text {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }
    
    .header {
        top: 0;
        background-color: var(--primary-navy);
        padding: 14px 0;
    }
    
    .header.scrolled {
        padding: 10px 0;
    }
    
    .header-container {
        display: grid !important;
        grid-template-columns: 40px 1fr 40px !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .logo {
        grid-column: 2 !important;
        justify-self: center !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .logo-horizontal {
        height: 35px !important;
    }
    
    .header-actions {
        grid-column: 3 !important;
        justify-self: end !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        margin: 0 !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        margin: 0 !important;
    }
    
    #btn-apply-header {
        display: none !important;
    }
    
    .hero-section {
        height: 125vw !important; /* 1080x1350 vertical aspect ratio */
        min-height: auto !important;
        padding-top: 90px !important;
        padding-bottom: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .hero-container {
        margin-top: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        padding: 0 15px !important;
    }
    
    .hero-badge {
        display: none !important;
    }
    
    .hero-subtitle {
        display: none !important;
    }
    
    .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .hero-ctas .btn {
        width: auto !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
    
    .hero-stats-bar {
        display: none !important;
    }
    
    .section-desc {
        display: none !important;
    }
    
    .transit-intro {
        display: none !important;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card-large,
    .bento-card-horizontal {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bento-list {
        grid-template-columns: 1fr;
    }
    
    .room-details-pane {
        padding: 30px;
    }
    
    .room-features-grid {
        grid-template-columns: 1fr;
    }
    
    .room-cta-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .room-cta-block .btn {
        width: 100%;
    }
    
    .etut-image-pane {
        height: 280px;
    }
    
    .transit-panel {
        padding: 24px;
    }
    
    .map-panel {
        height: 400px;
    }
    
    .map-overlay-card {
        padding: 16px;
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-header span {
        font-size: 14px;
    }
    
    .accordion-body p {
        padding: 0 20px 20px 20px;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-details-card {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Appointment Modal & Wizard Bot --- */
.appointment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.appointment-modal.active {
    display: flex;
}

.appointment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 34, 48, 0.75);
    backdrop-filter: blur(8px);
}

.appointment-modal-card {
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    width: 100%;
    max-width: 580px;
    padding: 40px;
    z-index: 10;
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

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

.appointment-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--dark-gray);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.appointment-modal-close:hover {
    color: var(--primary-navy);
    transform: rotate(90deg);
}

.appointment-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.appointment-modal-header .bot-avatar {
    width: 50px;
    height: 50px;
    background-color: rgba(181, 157, 110, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.appointment-modal-header .bot-avatar i {
    width: 24px;
    height: 24px;
}

.appointment-modal-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    margin: 0;
}

.appointment-modal-header p {
    font-size: 13px;
    color: var(--dark-gray);
    margin: 4px 0 0 0;
}

/* Progress bar */
.appointment-progress {
    height: 6px;
    background-color: var(--light-gray);
    border-radius: 99px;
    margin-bottom: 35px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-gold);
    border-radius: 99px;
    transition: width 0.4s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: -9px;
    left: 0;
}

.progress-step {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark-gray);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.progress-step.active {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.progress-step.completed {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

/* Wizard Steps */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeInStep 0.4s ease;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.wizard-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.wizard-step .step-desc {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

/* Options radio cards */
.wizard-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.wizard-option-card {
    display: block;
    cursor: pointer;
    position: relative;
}

.wizard-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.wizard-option-card .option-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.wizard-option-card:hover .option-content {
    border-color: var(--primary-gold);
}

.wizard-option-card input[type="radio"]:checked + .option-content {
    border-color: var(--primary-gold);
    background-color: rgba(181, 157, 110, 0.05);
    box-shadow: 0 4px 12px rgba(181, 157, 110, 0.12);
}

.wizard-option-card .option-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.wizard-option-card input[type="radio"]:checked + .option-content .option-icon {
    background-color: var(--primary-gold);
    color: var(--white);
}

.wizard-option-card .option-icon i {
    width: 18px;
    height: 18px;
}

.wizard-option-card .option-details h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 0 0 4px 0;
}

.wizard-option-card .option-details p {
    font-size: 12px;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.4;
}

/* Date and Time slots */
.date-time-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-label-custom {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: -10px;
}

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

.time-slot-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.time-slot-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.time-slot-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gray);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.time-slot-card:hover span {
    border-color: var(--primary-gold);
}

.time-slot-card input[type="radio"]:checked + span {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
}

/* Actions button bar */
.wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-gray);
    padding-top: 20px;
    margin-top: 20px;
}

.form-group-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
    .appointment-modal-card {
        padding: 30px 20px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
