/* Marine Rental App - Responsive CSS */

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

:root {
    /* Apple-inspired color scheme */
    --primary-color: #0071e3;
    --secondary-color: #0077ed;
    --accent-color: #06c;
    --success-color: #34c759;
    --danger-color: #ff3b30;
    --dark-color: #1d1d1f;
    --light-color: #fbfbfd;
    --border-color: #d2d2d7;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
    --nav-bg: rgba(255, 255, 255, 0.72);
    --backdrop-blur: blur(20px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    color: var(--text-primary);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header - Apple style with translucent backdrop */
.header {
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) var(--backdrop-blur);
    -webkit-backdrop-filter: saturate(180%) var(--backdrop-blur);
    color: var(--dark-color);
    padding: 0;
    box-shadow: inset 0 -1px 0 0 rgba(0,0,0,.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--dark-color);
    letter-spacing: -0.015em;
}

.logo-icon {
    width: 1em;
    height: 1em;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

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

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 400;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.language-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--dark-color);
    padding: 0.4rem 0.9rem;
    border-radius: 980px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    margin-left: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    height: fit-content;
}

.language-toggle:hover {
    background: var(--light-color);
    border-color: var(--text-secondary);
    color: var(--dark-color);
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.user-name {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.user-name:hover {
    color: var(--primary-color);
}

.logout-btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 0.4rem 0.9rem !important;
    border-radius: 980px !important;
    border: none !important;
    font-weight: 400 !important;
    font-size: 0.875rem !important;
    transition: all 0.3s ease !important;
}

.logout-btn:hover {
    background: var(--secondary-color) !important;
    color: white !important;
}

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

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content {
    min-height: calc(100vh - 120px);
    padding: 2rem 0;
}

/* Hero Section - Apple style minimalist */
.hero {
    background: var(--light-color);
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    border-radius: 18px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.0625;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.hero p {
    font-size: 1.375rem;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

/* Multi-day rental fields - initially hidden */
.multi-day-only {
    display: none;
}

/* Buttons - Apple style */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s;
    letter-spacing: -0.01em;
}

.btn:hover {
    background: var(--secondary-color);
    transform: scale(1.02);
}

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

.btn-secondary:hover {
    background: #333336;
}

.btn-success {
    background: var(--success-color);
}

.btn-danger {
    background: var(--danger-color);
}

/* Vehicle Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .vehicles-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.vehicle-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.vehicle-image {
    height: 200px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 3rem;
    position: relative;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.vehicle-type {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.vehicle-details {
    padding: 1.5rem;
}

.vehicle-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.vehicle-brand {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.vehicle-description {
    color: rgba(29, 29, 31, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 1rem;
}

.vehicle-price {
    display: flex;
    align-items: baseline;
        gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.vehicle-price .price-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.95rem;
    color: rgba(29, 29, 31, 0.7);
    font-weight: 500;
}

.vehicle-price .price-item .price-amount {
    font-weight: 600;
    color: var(--dark-color);
}

.vehicle-price .price-item .price-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.vehicle-price .price-item.price-main {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--dark-color);
}

.vehicle-price .price-item.price-main .price-amount {
    color: var(--dark-color);
}

.vehicle-price .price-item.price-main .price-label {
    font-size: 0.95rem;
    font-weight: 400;
}

/* Modal - Apple style */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 18px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

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

/* Booking Form */
.booking-form {
    display: grid;
    gap: 1rem;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* OTP Verification Styles */
.otp-step {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 18px;
    border: 1.5px solid var(--border-color);
    margin-top: 1rem;
}

.otp-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.otp-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.phone-display {
    font-weight: 600;
    color: var(--primary-color);
}

.otp-input {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
}

.otp-input:focus {
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.15);
}

.otp-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.btn-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.form-actions {
    margin-top: 1.5rem;
}

.form-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
}

.request-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Inline Booking Form Styles */
.booking-form-container {
    margin-top: 1rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 18px;
    border: 1px solid var(--border-color);
}

.booking-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.booking-form-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.close-booking-form {
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
}

/* Admin Panel - Updated to Apple style */
.admin-header {
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) var(--backdrop-blur);
    -webkit-backdrop-filter: saturate(180%) var(--backdrop-blur);
    color: var(--dark-color);
    padding: 0;
    box-shadow: inset 0 -1px 0 0 rgba(0,0,0,.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.admin-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-brand .logo {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: opacity 0.3s;
}

.admin-brand .logo:hover {
    opacity: 0.9;
}

.admin-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.admin-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    transition: all 0.3s;
    font-size: 0.875rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0.8;
}

.admin-nav a svg {
    flex-shrink: 0;
}

.admin-nav a:hover {
    background: var(--light-color);
    opacity: 1;
}

.admin-nav a.active {
    background: rgba(0, 113, 227, 0.1);
    color: var(--primary-color);
    opacity: 1;
}

.admin-nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 0.5rem;
}

.admin-nav .nav-secondary {
    color: var(--text-secondary);
}

.admin-nav .nav-secondary:hover {
    background: var(--light-color);
    opacity: 1;
}

.admin-nav .nav-danger {
    color: var(--danger-color);
}

.admin-nav .nav-danger:hover {
    background: rgba(255, 59, 48, 0.1);
    color: var(--danger-color);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .admin-nav a span {
        display: none;
    }
    
    .admin-nav a {
        padding: 0.5rem;
        justify-content: center;
    }
    
    .admin-badge {
        display: none;
    }
}

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

.table-container {
    overflow-x: auto;
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: var(--light-color);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
}

/* Status badges */
.status-badge {
    padding: 0.35rem 0.85rem;
    border-radius: 980px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-completed {
    background: #dbeafe;
    color: #1e40af;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        position: relative;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }

    .logo {
        flex: 1 1 auto;
        font-size: 1.15rem;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
        margin-left: auto;
        padding: 0.35rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        border-top: 1px solid var(--border-color);
    }
    
    .language-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: center;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* User menu visible on mobile - positioned between button and nav */
    .user-menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        padding-left: 0;
        border-left: none;
        margin-left: 0;
        font-size: 0.85rem;
        order: 3;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .user-name {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.35rem 0.6rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.05);
        font-weight: 600;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 60%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        order: 0;
    }
    
    .user-menu .nav-link {
        padding: 0.35rem 0.55rem;
        font-size: 0.82rem;
        flex: 0 0 auto;
    }

    .user-menu .logout-btn {
        padding: 0.35rem 0.65rem !important;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .vehicles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-name {
        font-size: 1.15rem;
        line-height: 1.2;
    }

    .vehicle-price .price-item.price-main {
        font-size: 1.2rem;
    }

    .vehicle-image {
        height: 160px;
    }

    .vehicle-image img {
        object-fit: contain;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1rem;
    }
    
    .table-container {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .filter-section,
    .vehicle-details {
        padding: 1rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }

    .vehicle-image {
        height: 140px;
    }

    .vehicle-image img {
        object-fit: contain;
    }
}

/* Loading and Empty States */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Success/Error Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.alert-success {
    background: rgba(52, 199, 89, 0.1);
    border: 1.5px solid var(--success-color);
    color: #1b5e20;
}

.alert-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1.5px solid var(--danger-color);
    color: #b71c1c;
}

.alert-info {
    background: rgba(0, 113, 227, 0.1);
    border: 1.5px solid var(--primary-color);
    color: #0d47a1;
}

/* About & Contact Sections */
.content-section {
    margin: 2rem 0;
    padding: 1.5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.375rem;
    line-height: 1.381;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* About Section */
.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.0625rem;
    line-height: 1.47;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.owner-section {
    background: linear-gradient(180deg, rgba(0, 113, 227, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.owner-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.owner-card,
.owner-benefits {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.owner-steps-title,
.owner-benefits h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: -0.015em;
}

.owner-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.owner-steps li {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--text-secondary);
    background: rgba(0, 113, 227, 0.05);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0, 113, 227, 0.08);
}

.owner-cta {
    align-self: flex-start;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.owner-cta-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.owner-cta-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.owner-cta-note a:hover {
    text-decoration: underline;
}

.owner-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.owner-benefit-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: #f9fbff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.owner-benefit-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.owner-benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--dark-color);
}

.owner-benefit-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.95rem;
}

.owner-teaser {
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, rgba(39, 174, 96, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 24px;
    margin-top: 3rem;
}

.owner-teaser-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(39, 174, 96, 0.18);
    box-shadow: 0 18px 36px rgba(23, 63, 43, 0.08);
    padding: 2.2rem 2.8rem;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.owner-teaser-copy h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.owner-teaser-copy p {
    margin: 0.5rem 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
}

.owner-teaser .owner-cta {
    background: #27ae60;
    border-radius: 26px;
    padding: 0.85rem 1.9rem;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.25);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.owner-teaser .owner-cta:hover {
    background: #1f8c4d;
}

@media (max-width: 768px) {
    .owner-teaser-card {
        padding: 2rem;
        max-width: 100%;
    }

    .owner-teaser .owner-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .owner-section {
        padding: 2.5rem 1.5rem;
    }

    .owner-card,
    .owner-benefits {
        padding: 2rem;
    }
}

.about-mission {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 18px;
    border-left: 4px solid var(--primary-color);
}

.about-mission h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.about-mission p {
    line-height: 1.47;
    color: var(--text-secondary);
}

.about-features h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

/* Contact Section */
.contact-minimal {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-item-minimal {
    margin: 1.5rem 0;
    font-size: 1.0625rem;
    line-height: 1.47;
    color: var(--text-primary);
}

.contact-item-minimal strong {
    color: var(--dark-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.contact-item-minimal a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item-minimal a:hover {
    text-decoration: underline;
}

/* Responsive About & Contact */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .contact-item-minimal {
        font-size: 1rem;
        margin: 1rem 0;
    }
}

/* FAQ Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    background: var(--light-color);
    color: var(--dark-color);
    margin: 0;
    padding: 20px;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 600;
    position: relative;
    transition: background-color 0.3s ease;
    user-select: none;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    background: #f0f0f5;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    font-weight: 300;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 15px;
        font-size: 1em;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

/* End FAQ Styles */

/* Footer Styles - Apple inspired */
.footer {
    background: var(--light-color);
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    padding: 1.5rem 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.footer-contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-contact span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 1rem 0;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-copyright {
        padding-top: 0.75rem;
    }
}

/* End Footer Styles */