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

:root {
    --navy-blue: #1e3a5f;
    --dark-navy: #14293f;
    --light-navy: #2a4d7a;
    --orange: #ffa500;
    --light-orange: #ffb733;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #6c757d;
    --light-blue: #a8c5e0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

.top-bar {
    background: var(--light-blue);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-icon {
    color: var(--white);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--white);
    color: var(--navy-blue);
    transform: translateY(-2px);
}

.contact-info-top {
    display: flex;
    gap: 25px;
}

.top-contact {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.top-contact:hover {
    opacity: 0.8;
}

.navbar {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1;
    margin-bottom: 5px;
}

.logo h1 span {
    color: var(--orange);
    font-size: 36px;
}

.tagline {
    font-size: 10px;
    color: var(--orange);
    letter-spacing: 2px;
    font-weight: 600;
}

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

.nav-link {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
}

.btn-book {
    background: linear-gradient(135deg, var(--orange) 0%, var(--light-orange) 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    border: 2px solid transparent;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--orange) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.btn-book:hover::before {
    opacity: 1;
}

.btn-book-icon {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.btn-book span {
    position: relative;
    z-index: 1;
}

.btn-book-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.btn-book:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-book:hover .btn-book-shine {
    left: 100%;
}

.btn-book:hover .btn-book-icon {
    transform: rotate(15deg) scale(1.1);
}

.btn-book:active {
    transform: translateY(-1px) scale(1.02);
}

.hero {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    padding: 100px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--orange);
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-circle-2 {
    width: 350px;
    height: 350px;
    background: var(--light-blue);
    bottom: -100px;
    left: -80px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    background: var(--orange);
    top: 40%;
    left: 10%;
    animation: float 25s ease-in-out infinite;
}

.hero-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 165, 0, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-badge-wrapper {
    margin-bottom: 25px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 165, 0, 0.15);
    border: 2px solid var(--orange);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--orange);
    font-weight: 600;
    font-size: 13px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge-icon {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
    }
}

.hero-text-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-orange {
    color: var(--orange);
}

.title-navy {
    color: var(--navy-blue);
}

.hero-subtitle {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--orange);
}

.hero-stat-text {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-blue);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

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

.btn-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--light-orange) 100%);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.btn-orange svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--navy-blue);
    padding: 16px 35px;
    border: 2px solid var(--orange);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline svg {
    width: 18px;
    height: 18px;
    stroke: var(--navy-blue);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.btn-outline:hover svg {
    stroke: var(--white);
    transform: translateX(5px);
}

.hero-image {
    position: relative;
}

.hero-image-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-float-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 13px;
    color: var(--navy-blue);
    border: 2px solid rgba(255, 165, 0, 0.2);
}

.hero-float-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.hero-float-1 {
    top: 15%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.hero-float-2 {
    bottom: 20%;
    right: -5%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.overlay-badge {
    background: rgba(255, 165, 0, 0.95);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
}

.overlay-badge i {
    font-size: 20px;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.services-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        var(--orange) 0px,
        var(--orange) 2px,
        transparent 2px,
        transparent 10px
    );
}

.pattern-1 {
    top: -50px;
    left: -50px;
    transform: rotate(45deg);
}

.pattern-2 {
    bottom: -50px;
    right: -50px;
    transform: rotate(-45deg);
}

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

.services-header-enhanced {
    position: relative;
    z-index: 1;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid var(--orange);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
}

.services-badge-icon {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.services-title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 15px;
}

.text-orange {
    color: var(--orange);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 35px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--light-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 165, 0, 0.2);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 165, 0, 0.2);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--orange);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--light-orange) 100%);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--orange);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-badge {
    background: var(--orange);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge-blue {
    background: #3b82f6;
}

.service-badge-green {
    background: #10b981;
}

.service-badge-purple {
    background: #8b5cf6;
}

.service-badge-red {
    background: #ef4444;
}

.service-badge-teal {
    background: #14b8a6;
}

.service-card h3 {
    color: var(--navy-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}

.service-card > p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy-blue);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features i {
    color: var(--orange);
    font-size: 12px;
    width: 16px;
    height: 16px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
    color: var(--navy-blue);
}

.service-link:hover svg {
    stroke: var(--navy-blue);
    transform: translateX(5px);
}

.about {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.badge-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.3);
    animation: rotate 20s linear infinite;
}

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

.badge-text {
    text-align: center;
    color: var(--white);
    animation: rotate-reverse 20s linear infinite;
}

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

.badge-label {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.badge-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
}

.about-content {
    padding: 20px;
}

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

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--gray);
    font-size: 14px;
}

.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--orange);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--navy-blue);
    bottom: -50px;
    left: -50px;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-header-enhanced {
    position: relative;
    margin-bottom: 60px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid var(--orange);
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--orange);
    font-weight: 600;
    font-size: 14px;
}

.contact-badge-icon {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.contact-title {
    margin-bottom: 15px;
}

.contact-title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.underline-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.underline-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--light-orange) 100%);
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

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

.contact-info-header {
    margin-bottom: 15px;
}

.contact-info-header h3 {
    color: var(--navy-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info-header p {
    color: var(--gray);
    font-size: 15px;
}

.contact-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    background: var(--navy-blue);
    transform: translateX(10px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.2);
}

.contact-card:hover .contact-icon {
    background: var(--orange);
    transform: scale(1.1);
}

.contact-card:hover .contact-icon svg {
    stroke: var(--white);
}

.contact-card:hover h4,
.contact-card:hover p,
.contact-card:hover a,
.contact-card:hover .contact-label {
    color: var(--white);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--orange);
    transition: all 0.3s ease;
}

.contact-details h4 {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: var(--navy-blue);
    font-size: 15px;
    text-decoration: none;
    line-height: 1.6;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: var(--orange);
}

.contact-label {
    display: block;
    color: var(--gray);
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(255, 165, 0, 0.1);
}

.form-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 165, 0, 0.1);
}

.form-header h3 {
    color: var(--navy-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
    font-size: 14px;
}

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

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

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

.form-group label {
    color: var(--navy-blue);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-icon {
    width: 18px;
    height: 18px;
    stroke: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--navy-blue);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--orange);
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--orange) 0%, var(--light-orange) 100%);
    color: var(--white);
    padding: 18px 45px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

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

.footer {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--light-orange) 50%, var(--orange) 100%);
}

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

.footer-brand-section {
    max-width: 400px;
}

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

.footer-logo-svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.footer-brand-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-uen {
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--light-blue);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-social-icon:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-heading-icon {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link-icon {
    width: 16px;
    height: 16px;
    stroke: var(--orange);
    flex-shrink: 0;
}

.footer-section ul li a,
.footer-section ul li span {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

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

.footer-bottom p {
    color: var(--light-blue);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--light-blue);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

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

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info-top {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-text-box {
        padding: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
}
