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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 50%, #1a2847 100%);
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f23 0%, #1a1f3a 50%, #0f1428 100%);
    color: white;
    overflow-x: hidden;
}

/* Global smooth transitions */
a, button, input, select, textarea {
    transition: all 0.3s ease;
}

img {
    transition: transform 0.4s ease, filter 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background: rgba(15, 20, 40, 0.75);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    position: relative;
    padding: 6px 0;
    text-decoration: none;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

.logo-image {
    height: 48px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
    transition: all 0.3s;
}

.logo:hover .logo-image {
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(0, 212, 255, 0.6));
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.8px;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 22px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    border: 1px solid transparent;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover {
    color: #00d4ff;
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.btn-book {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #0a0f23;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    transition: transform 0.6s;
}

.btn-book:hover::after {
    transform: rotateZ(60deg) translate(1em, -9em);
}

.btn-book:hover {
    background: linear-gradient(135deg, #00bbff 0%, #0088ee 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 212, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-book:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
}

.badge-icon {
    color: #00d4ff;
    font-size: 16px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.hero-title-accent {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

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

.btn-primary {
    background: #00d4ff;
    color: #1a1f3a;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #00bbff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1.5px;
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-badge-bottom {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.badge-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    flex-shrink: 0;
}

.badge-text-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.badge-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Precision Divisions Section */
.divisions {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.divisions-badge {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.section-title:hover {
    transform: scale(1.02);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
}

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.division-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.division-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.25);
}

.division-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #2d3561 0%, #1a2847 100%);
}

.division-image.dark {
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1428 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

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

.division-card:hover .division-image img {
    transform: scale(1.1);
}

.division-icon {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.division-image.dark .division-icon {
    position: static;
    width: 56px;
    height: 56px;
    background: rgba(0, 212, 255, 0.2);
}

.division-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.division-content {
    padding: 24px;
}

.division-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.division-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.division-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.division-price {
    font-size: 13px;
    font-weight: 600;
    color: #00d4ff;
    letter-spacing: 0.5px;
}

.division-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.division-btn:hover {
    background: #00d4ff;
    color: #1a1f3a;
    transform: translateX(3px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.testimonials-badge {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #00d4ff;
    margin-bottom: 20px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-image {
    display: none;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.review-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.google-icon {
    flex-shrink: 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.contact-badge {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #00d4ff;
    margin-bottom: 20px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group select {
    cursor: pointer;
}

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

.btn-submit {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #0a0f23;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 25px rgba(0, 212, 255, 0.3);
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #00bbff 0%, #0088ee 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: rgba(26, 31, 58, 0.95);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.footer-brand {
    max-width: 320px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 36px;
    width: auto;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.footer-column h4 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.contact-icon {
    color: #00d4ff;
    margin-right: 8px;
}

.contact-detail {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.contact-phone {
    color: #00d4ff;
    font-weight: 600;
    font-size: 15px;
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 16px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
}

.newsletter-btn {
    width: 40px;
    height: 40px;
    background: #00d4ff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1f3a;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: #00bbff;
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #00d4ff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 20px 0;
    }
    
    .nav-menu {
        gap: 8px;
    }
    
    .nav-menu a {
        padding: 9px 18px;
        font-size: 14px;
    }
    
    .logo-image {
        height: 42px;
    }
    
    .logo-text {
        font-size: 19px;
    }
    
    .btn-book {
        padding: 11px 22px;
        font-size: 13px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 18px 0;
    }
    
    .navbar .container {
        gap: 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .btn-book {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-badge-bottom {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 16px 20px;
    }
    
    .divisions-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .division-content {
        padding: 20px;
    }
    
    .division-content p {
        min-height: auto;
    }
}
