/* ============================================
   HONNIMAR - Maritime Safety Management Software
   Modern, Clean Design
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Honnimar Brand Palette */
    --color-primary-dark: #0d2b3e;
    --color-primary: #1a4a5c;
    --color-primary-light: #2d6a7f;
    --color-accent: #4a90a4;
    --color-accent-light: #6bb5c9;
    --color-accent-dark: #3a7a8e;
    --color-light: #f5f7f9;
    --color-lighter: #ffffff;
    --color-text: #1a2332;
    --color-text-light: #5a6a7a;
    --color-border: #e2e8f0;
    --color-success: #10b981;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(13, 43, 62, 0.06);
    --shadow-md: 0 8px 24px rgba(13, 43, 62, 0.08);
    --shadow-lg: 0 16px 48px rgba(13, 43, 62, 0.12);
    --shadow-xl: 0 24px 64px rgba(13, 43, 62, 0.16);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    overflow-x: hidden;
    background: var(--color-lighter);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 20px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.4;
}

.section-tag::before {
    left: -20px;
}

.section-tag::after {
    right: -20px;
}

.section-title {
    font-size: 52px;
    color: var(--color-primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition-fast);
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 164, 0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 144, 164, 0.25);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 43, 62, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(13, 43, 62, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

.logo-white {
    display: block;
}

.logo-color {
    display: none;
}

.navbar.scrolled .logo-white {
    display: block;
}

.navbar.scrolled .logo-color {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: white;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

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

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

.nav-cta {
    background: var(--color-accent);
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.nav-cta:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 164, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-fast);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    margin-top: 15px;
    padding: 8px 0;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid var(--color-border);
}

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

.dropdown a {
    display: block;
    padding: 14px 24px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
}

.dropdown a:hover {
    background: var(--color-light);
    color: var(--color-accent);
    padding-left: 28px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 43, 62, 0.6) 0%, rgba(26, 74, 92, 0.5) 50%, rgba(45, 106, 127, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    max-width: 400px;
    margin: 0 auto 40px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
    letter-spacing: -1px;
    color: #fff;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 48px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 1;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    margin: 10px auto 0;
    animation: scrollLine 2s ease infinite;
}

/* Overview Section */
.overview {
    padding: var(--section-padding) 0;
    background: var(--color-light);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

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

.overview-card:hover::before {
    transform: scaleX(1);
}

.overview-card.featured {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
}

.overview-card.featured h3,
.overview-card.featured .overview-link {
    color: white;
}

.overview-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.overview-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    border-radius: 12px;
    padding: 15px;
}

.overview-card.featured .overview-icon {
    background: rgba(255, 255, 255, 0.1);
}

.overview-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.overview-card h3 {
    font-size: 24px;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.overview-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--color-text-light);
}

.overview-link {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.overview-link:hover {
    color: var(--color-accent-dark);
    gap: 12px;
}

/* Detail Section (ISPS, Crisis, ISM) */
.detail-section {
    padding: var(--section-padding) 0;
}

.detail-section.alt {
    background: var(--color-light);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.detail-grid.reverse {
    direction: rtl;
}

.detail-grid.reverse > * {
    direction: ltr;
}

.detail-content .section-tag,
.detail-content .section-title {
    text-align: left;
}

.detail-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.detail-content h3 {
    font-size: 24px;
    color: var(--color-primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.detail-features {
    margin: 40px 0;
    padding: 30px;
    background: var(--color-light);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
}

.detail-section.alt .detail-features {
    background: white;
}

.detail-features h4 {
    font-size: 18px;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.detail-features h4:first-child {
    margin-top: 0;
}

.detail-features ul {
    margin-bottom: 20px;
}

.detail-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: var(--color-text);
}

.detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 16px;
}

.detail-content .btn {
    margin-top: 30px;
}

.detail-image {
    position: sticky;
    top: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Suite Intro */
.suite-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.suite-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.suite-intro p:last-child {
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-tag,
.about-content .section-title {
    text-align: left;
}

.about-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: 12px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Software Suite Section */
.suite {
    padding: var(--section-padding) 0;
    background: var(--color-light);
}

.suite-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.suite-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.suite-item.reverse {
    direction: rtl;
}

.suite-item.reverse > * {
    direction: ltr;
}

.suite-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.suite-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-medium);
}

.suite-item:hover .suite-image::after {
    opacity: 1;
}

.suite-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-medium);
}

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

.suite-content h3 {
    font-size: 36px;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.suite-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-align: left;
    transition: var(--transition-fast);
}

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

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition-fast);
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
}

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

.faq-answer p {
    padding-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: var(--color-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-tag,
.contact-info .section-title {
    text-align: left;
}

.contact-lead {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--color-primary-dark);
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.contact-cta {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.contact-cta.sales-section {
    margin-top: 60px;
}

.contact-cta.support-section {
    margin-top: 50px;
}

.contact-cta h4 {
    font-size: 20px;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-cta p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.contact-cta .btn {
    margin-top: 10px;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--color-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(74, 144, 164, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--color-primary-dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent-light);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-contact a {
    display: block;
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--color-accent-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .about-grid,
    .contact-grid,
    .detail-grid {
        gap: 50px;
    }
    
    .suite-item {
        gap: 40px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-image {
        position: relative;
        top: 0;
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-fast);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .dropdown a {
        color: white;
    }
    
    .dropdown a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-accent-light);
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-grid,
    .detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .detail-grid.reverse > * {
        direction: ltr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .suite-item,
    .suite-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .suite-item.reverse > * {
        direction: ltr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .detail-content h3 {
        font-size: 20px;
    }
    
    .detail-features {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .overview-card {
        padding: 30px 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}
