/* Universal CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --primary-blue: #2E57D1;
    --secondary-blue: #4A90E2;
    --light-blue: #E8F0FE;
    --dark-blue: #1B3A8C;
    --accent-blue: #3B82F6;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --gray: #6B7280;
    --dark-gray: #374151;
    --text-dark: #1F2937;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo-image {
    width: 180px;
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

nav a.active {
    color: var(--primary-blue);
    background-color: var(--light-blue);
}

nav a.book-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

nav a.book-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background-color: var(--light-blue);
}

/* Main Content */
main {
    margin-top: 80px;
}

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

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(46, 87, 209, 0.8) 0%, rgba(74, 144, 226, 0.8) 100%), 
                url('https://images.pexels.com/photos/5668473/pexels-photo-5668473.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
    color: var(--white);
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></linearGradient></defs><polygon fill="url(%23grad1)" points="0,0 1000,0 1000,800 0,1000"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0;
    padding-left: 20px;
    width: 100%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.03em;
    animation: fadeInUp 1s ease-out;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    max-width: 800px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: 0;
    margin-right: 0;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--secondary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 87, 209, 0.4);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

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

/* Content Sections */
.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-section h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.content-section p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 1.1rem;
}

.image-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Feature List */
.feature-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Cards */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.certifications-card {
    transition: all 0.3s ease;
}

.certifications-card:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.certifications-card:hover h3,
.certifications-card:hover li,
.certifications-card:hover li i {
    color: var(--white);
}

.certifications-card:hover .card-icon {
    background-color: var(--white);
}

.certifications-card:hover .card-icon i {
    color: var(--primary-blue);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(46, 87, 209, 0.1);
}

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

/* Page Headers */
.page-header {
    background: var(--light-blue);
    padding: 40px 0;
    margin-top: 80px;
}

.page-header h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* About Page Styles */
.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mission-item h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.value-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.founder-image {
    position: sticky;
    top: 120px;
}

.founder-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.founder-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.founder-content {
    padding: 20px 0;
}

.founder-content h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.founder-title {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.founder-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.founder-credentials {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.credential-item:last-child {
    margin-bottom: 0;
}

.credential-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
}

/* Service Cards */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-list {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
}

.service-list i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.cert-list {
    list-style: none;
    margin: 20px 0;
}

.cert-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
}

.cert-list i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--light-gray);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-top: 2px;
}

.contact-item strong {
    color: var(--text-dark);
}

.map-placeholder {
    background: var(--light-gray);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Booking Page */
.booking-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-card {
    margin-bottom: 0;
}

.booking-list {
    list-style: none;
    margin: 15px 0;
}

.booking-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray);
}

.booking-list i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
}

.process-step i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 2px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section p,
.footer-section a {
    color: #B3C5FF;
    text-decoration: none;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

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

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

.footer-logo-image {
    width: 180px;
    height: 50px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 30px;
    text-align: center;
    color: #B3C5FF;
}

.footer-bottom a {
    color: #B3C5FF;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Hide pages */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .hero-content {
        padding-left: 40px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .hero-content {
        padding-left: 30px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    nav ul {
        display: flex;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow);
        padding: 60px 40px;
        flex-direction: column;
        gap: 30px;
        justify-content: flex-start;
        align-items: center;
        z-index: 9999;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }

    nav ul.show {
        transform: translateX(0);
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    nav ul a {
        display: block;
        padding: 20px 30px;
        font-size: 1.3rem;
        font-weight: 600;
        border-radius: 12px;
        width: 100%;
        transition: all 0.3s ease;
        background: rgba(46, 87, 209, 0.05);
        margin-bottom: 10px;
    }

    nav ul a:hover,
    nav ul a.active {
        background: var(--primary-blue);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(46, 87, 209, 0.3);
    }

    nav ul a.book-btn {
        background: var(--primary-blue);
        color: var(--white);
        margin-top: 20px;
        padding: 25px 30px;
        font-size: 1.4rem;
        font-weight: 700;
    }

    nav ul a.book-btn:hover {
        background: var(--dark-blue);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(27, 58, 140, 0.4);
    }

    .mobile-menu {
        display: block;
        z-index: 10000;
        position: relative;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-menu:hover {
        background-color: var(--light-blue);
        transform: scale(1.05);
    }

    .mobile-menu i {
        font-size: 1.4rem;
        transition: all 0.3s ease;
    }

    /* Add overlay when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
        text-align: left;
        margin-bottom: 25px;
    }

    .hero {
        padding: 100px 0;
        min-height: 60vh;
        text-align: left;
        justify-content: flex-start;
    }

    .hero-content {
        text-align: left;
        margin: 0;
        padding: 0 20px;
    }

    .hero p {
        font-size: 1.2rem;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .founder-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-image {
        position: static;
        order: 1;
    }
    
    .founder-image img {
        height: 400px;
    }
    
    .founder-content {
        order: 2;
        padding: 0;
    }
    
    .founder-content h3 {
        font-size: 2rem;
    }

    .process-steps {
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-list {
        gap: 12px;
    }

    .value-item {
        padding: 12px;
    }

    .team-image img {
        width: 150px;
        height: 150px;
    }

    .booking-info-section {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0;
        min-height: 50vh;
        text-align: left;
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 2.2rem;
        text-align: left;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-content {
        text-align: left;
        margin: 0;
        padding: 0 15px;
    }

    .hero-buttons {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
        width: auto;
        min-width: 200px;
    }

    .section {
        padding: 50px 0;
    }

    .card {
        padding: 20px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .founder-image img {
        height: 350px;
    }
    
    .founder-content h3 {
        font-size: 1.8rem;
    }
    
    .founder-credentials {
        padding: 20px;
        margin-top: 30px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Status Messages */
.form-status {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    background-color: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-status.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

.form-status.loading {
    background-color: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #3B82F6;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
.aligned-text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}
.map-embed {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
