/* Custom CSS for Case Sole e Luna */

/* CSS Variables */
:root {
    --primary: #0f4c81; /* Classic Blue */
    --primary-light: #1d72b8;
    --primary-dark: #072a4b;
    --accent: #f5b041; /* Golden Sun Yellow */
    --accent-hover: #eb984e;
    --secondary: #e67e22; /* Warm Amber */
    
    --bg-main: #f9f9fb;
    --bg-dark: #121f2c;
    --bg-glass: rgba(255, 255, 255, 0.85);
    
    --text-color: #2c3e50;
    --text-muted: #7f8c8d;
    --text-light: #ffffff;
    
    --border-color: #eaecef;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.12);
    
    --transition-speed: 0.3s;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset and Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.2);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 176, 65, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

/* Header & Navigation */
.site-header {
    background-color: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-images {
    display: flex;
    position: relative;
    align-items: center;
    width: 68px;
    height: 48px;
}

.logo-sun {
    width: 38px;
    height: 38px;
    position: absolute;
    left: 0;
    animation: rotateSun 15s linear infinite;
}

.logo-moon {
    width: 26px;
    height: 26px;
    position: absolute;
    right: 8px;
    top: 10px;
}

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

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
}

/* Desktop Nav */
.desktop-nav ul {
    display: flex;
    gap: 28px;
}

.desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
}

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

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width var(--transition-speed);
    border-radius: 2px;
}

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

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

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition-speed);
    color: var(--text-color);
}

.lang-btn:hover {
    background-color: rgba(0,0,0,0.02);
}

.flag-icon {
    width: 18px;
    height: 12px;
    border-radius: 1px;
    object-fit: cover;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    min-width: 130px;
    overflow: hidden;
    z-index: 101;
}

.lang-dropdown.show {
    display: flex;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition-speed);
}

.lang-dropdown a:hover {
    background-color: var(--bg-main);
}

.lang-dropdown a.active {
    background-color: rgba(15, 76, 129, 0.05);
    color: var(--primary);
    font-weight: 600;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: var(--text-color);
    cursor: pointer;
    padding: 6px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: var(--text-light);
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right var(--transition-speed) ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

.drawer-nav {
    padding: 24px;
}

.drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-color);
}

.drawer-nav a.active {
    color: var(--primary);
}

.drawer-footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
}

.drawer-lang {
    display: flex;
    gap: 16px;
}

.drawer-lang a {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
}

.drawer-lang a.active {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 0.55; /* Overlay dimming */
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-weight: 800;
}

.hero-content p.subtitle {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p.desc {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 650px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid rgba(0,0,0,0.01);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(15, 76, 129, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Welcome Section */
.welcome-section {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.welcome-text p {
    margin-bottom: 18px;
    color: #4a5568;
}

.welcome-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-hover);
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

/* Apartment Section / Cards */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.apt-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
}

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

.apt-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.apt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.apt-card:hover .apt-image img {
    transform: scale(1.06);
}

.apt-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    font-family: var(--font-heading);
}

.apt-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.apt-details h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.apt-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.apt-meta span i {
    color: var(--primary);
    margin-right: 4px;
}

.apt-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.apt-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.apt-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.apt-price strong {
    font-size: 1.25rem;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Photo Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

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

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

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 31, 44, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.gallery-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 3px solid #fff;
}

#modalCaption {
    color: var(--text-light);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-light);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color var(--transition-speed);
}

.modal-close:hover {
    color: var(--accent);
}

/* Pricing Table CSS */
.table-responsive {
    overflow-x: auto;
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.price-table th, .price-table td {
    padding: 18px 24px;
    text-align: center;
}

.price-table th {
    background-color: var(--primary);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

.price-table th:first-child {
    text-align: left;
}

.price-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-speed);
}

.price-table tbody tr:hover {
    background-color: rgba(15, 76, 129, 0.02);
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table td:first-child {
    text-align: left;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

.price-period-badge {
    background-color: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 12px;
}

.price-dates {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

.price-val {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

/* Conditions & Supplements layout */
.conditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.condition-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 35px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.01);
}

.condition-card h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.condition-card h3 i {
    color: var(--primary);
}

.condition-card h3.special i {
    color: var(--secondary);
}

.condition-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.condition-card li {
    font-size: 0.95rem;
    color: #4a5568;
    position: relative;
    padding-left: 24px;
}

.condition-card li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary);
    font-size: 0.9rem;
}

.condition-card li.highlight {
    background-color: rgba(230, 126, 34, 0.08);
    border-left: 4px solid var(--secondary);
    padding: 12px 16px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-weight: 600;
}

.condition-card li.highlight i {
    display: none;
}

/* Beaches Layout */
.beaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.beach-card {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.beach-image {
    height: 200px;
    overflow: hidden;
}

.beach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.beach-details {
    padding: 24px;
    flex-grow: 1;
}

.beach-details h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.beach-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Contact and Map Layout */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.contact-form-container h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.contact-form-container p.desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-color);
    transition: border-color var(--transition-speed);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

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

.alert {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Maps and location info */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 20px;
}

.info-box-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-box-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.info-box-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-wrapper {
    height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Admin Dashboard CSS */
.admin-container {
    max-width: 1000px;
    margin: 40px auto;
    background-color: var(--text-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.admin-form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.admin-form-section h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.admin-period-row {
    background-color: #fcfcfd;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 20px;
}

.admin-grid-inputs {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

/* Footer styling */
.site-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 30px;
    border-top: 5px solid var(--primary);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 1px;
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

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

.footer-col.contact-col p {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-col.contact-col p i {
    color: var(--accent);
    width: 16px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    color: var(--text-light);
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

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

.footer-bottom a:hover {
    color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-section-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p.subtitle {
        font-size: 1.25rem;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-grid-inputs {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
