:root {
    --primary: #003366;
    --secondary: #DAA520;
    --text-dark: #222;
    --text-light: #fff;
    --light-bg: #f5f5f5;
}

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

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

/* Navigation */
.navbar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 2rem 0.1rem 0.5rem; /* Less vertical padding */
    min-height: 70px;                   /* Reduce min-height */
    gap: 0;
}
.logo img {
  height: 120px;
  width: auto;           /* Keep aspect ratio */
  max-width: 420px;      /* Limit max width */
  display: block;
  margin-left: 0;        /* No left margin */
  margin-right: 1rem;    /* Small right margin for spacing */
  object-fit: contain;
}

.logo-text {
  font-size: 22px;  /* Bigger text */
  color: #222;
  text-align: left;
  margin-top: 5px;
  margin-left: 0;
}





.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;        /* Prevent wrapping */
    overflow-x: auto;         /* Allow horizontal scroll if needed */
    white-space: nowrap;      /* Prevent text from wrapping */
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

/* Hero Section */

.hero {
    min-height: 60vh;
    height: auto;
    background: url('../images/bg-hero1.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-top: 130px; /* Increase this value as needed */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem; /* Add this line */
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--secondary);
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #b8860b;
}
/* Contact Form */
.contact-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 0;
}

.container {
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.contact-glass {
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    border-radius: 0; /* Remove rounded corners for full edge-to-edge */
    padding: 0;
    box-shadow: none;
    background: rgba(255,255,255,0.22);
}

.contact-flex {
    padding: 0;
    max-width: 100vw;
    gap: 0;
}

.contact-info-side,
.contact-form-side {
    padding: 2rem 2vw;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Construction Notice */
.construction-page {
    background: url('../images/buildin.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.construction-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
}

.construction-message {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    text-align: center;
    margin: 0 20px;
}

.construction-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    border-top: 2px solid var(--secondary);
    z-index: 200;
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-info, .contact-info {
    margin-bottom: 0.5rem;
}

/* Contact Glassmorphism Style */
.contact-glass {
    background: rgba(255,255,255,0.22);
    box-shadow: 0 8px 32px 0 rgba(31,38,135,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 1.2rem 1rem 1rem 1rem;
    max-width: 500px;
    width: 100%;
    margin: 1.5rem auto 0 auto;
    transition: box-shadow 0.2s;
}
.contact-glass h2 {
    text-align: center;
    color: #003366;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}
.contact-glass p {
    text-align: center;
    color: #444;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.contact-details {
    text-align: center;
    margin-bottom: 1rem;
    color: #003366;
    font-size: 0.98rem;
}
.form-row {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}
.form-row .form-group {
    flex: 1;
}
.form-group {
    margin-bottom: 0.7rem;
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 0.45rem;
    color: #003366;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid #DAA520;
    border-radius: 10px;
    background: rgba(255,255,255,0.92);
    font-size: 0.98rem;
    color: #222;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(218,165,32,0.04);
}
.form-group input:focus,
.form-group textarea:focus {
    border: 2px solid #003366;
    box-shadow: 0 0 0 2px #DAA52033;
}
.form-group textarea {
    min-height: 70px;
    resize: vertical;
}
.contact-btn {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(90deg, #003366 60%, #DAA520 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 0.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    letter-spacing: 1px;
}
.contact-btn:hover {
    background: linear-gradient(90deg, #DAA520 10%, #003366 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

/* Flash Messages */
.flash-messages {
    margin-top: 1.2rem;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 0.7s;
}

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

.flash {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(32, 114, 69, 0.08);
    margin-bottom: 0.5rem;
    background: #e6ffed;
    color: #207245;
    border: 1.5px solid #b6e2c8;
    position: relative;
    min-width: 320px;
    justify-content: center;
}

.flash-danger {
    background: #ffeaea;
    color: #a94442;
    border: 1.5px solid #e2b6b6;
}

.flash-icon {
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: #2ecc40;
    animation: popIn 0.5s;
}

.flash-danger .flash-icon {
    color: #e67c73;
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0;}
    80% { transform: scale(1.2);}
    100% { transform: scale(1); opacity: 1;}
}

.flash-text {
    flex: 1;
    text-align: left;
}

/* Horizontal Contact Form Layout */
.contact-flex {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 2rem;
    max-width: 900px;
}

.contact-info-side {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 1rem;
    border-right: 1.5px solid #eee;
}

.contact-info-side h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.contact-info-side p {
    text-align: left;
    margin-bottom: 1.2rem;
    color: #444;
}
.contact-details {
    text-align: left;
    color: #003366;
    font-size: 1.05rem;
}

.contact-form-side {
    flex: 1 1 60%;
    padding-left: 1rem;
}

.contact-form-side .form-row {
    display: flex;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
}
.contact-form-side .form-group {
    flex: 1;
    margin-bottom: 0.7rem;
}
.contact-form-side .form-group label {
    margin-bottom: 0.3rem;
    color: #003366;
    font-weight: 600;
    font-size: 1rem;
}
.contact-form-side .form-group input,
.contact-form-side .form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid #DAA520;
    border-radius: 10px;
    background: rgba(255,255,255,0.92);
    font-size: 0.98rem;
    color: #222;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(218,165,32,0.04);
}
.contact-form-side .form-group textarea {
    min-height: 70px;
    resize: vertical;
}
.contact-form-side .contact-btn {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(90deg, #003366 60%, #DAA520 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 0.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    letter-spacing: 1px;
}
.contact-form-side .contact-btn:hover {
    background: linear-gradient(90deg, #DAA520 10%, #003366 100%);
    color: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0.5rem;
        max-width: 98vw;
    }
    .contact-info-side {
        border-right: none;
        border-bottom: 1.5px solid #eee;
        padding-right: 0;
        padding-bottom: 1rem;
    }
    .contact-form-side {
        padding-left: 0;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 700px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .logo img {
        height: 56px;
        max-width: 130px;
    }
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-content h2 {
        font-size: 0.96rem;
    }
    .contact-glass {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        max-width: 98vw;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .logo img {
        height: 60px;
        max-width: 160px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
    .hero-content h2 {
        font-size: 1rem;
    }
    .hero-content {
        padding: 0 0.5rem;
    }
  .nav-links {
    gap: 0.7rem;
    font-size: 0.95rem;
  }
  .nav-links a {
    padding: 0 0.2rem;
  }
  .logo img {
    height: 40px;
    max-width: 80px;
  }
}

@media (max-width: 500px) {
    .hero-content h1 { font-size: 1.3rem; }
    .hero-content h2 { font-size: 0.95rem; }
    .contact-glass {
        padding: 0.5rem 0.1rem;
    }
    .contact-section {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .nav-links {
        gap: 1rem;
    }
  .nav-container {
    flex-direction: column;
    align-items: center;
  }
  .nav-links {
    justify-content: center;
    width: 100%;
  }
}

/* Under Construction Hero Section */
.under-construction-hero {
    background: #fcfbfa;
    min-height: 350px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    scroll-margin-top: 130px;
    border-bottom: none;
}

.uc-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.uc-icon {
    margin-bottom: 1rem;
}
.uc-icon span {
    display: inline-block;
    background: #a94442;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;      /* reduced from 2.8rem */
    width: 40px;          /* reduced from 54px */
    height: 40px;         /* reduced from 54px */
    line-height: 40px;    /* reduced from 54px */
    border-radius: 50%;
    text-align: center;
}

.uc-message {
    color: #e60000;
    font-size: 1.3rem;    /* reduced from 2rem */
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 1.2rem;
    margin-top: 0;
    line-height: 1.3;
}

.uc-management {
    color: #222;
    font-size: 1.1rem;    /* reduced from 1.5rem */
    font-family: 'Montserrat', Arial, sans-serif;
    font-style: italic;
    font-weight: bold;
    margin-top: 1rem;
    text-align: center;
}

/* Thank You Page Styles */
.thank-you-modern {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(34,197,94,0.10);
    text-align: center;
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
}
.tick-circle {
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px #22c55e33;
}

/* Add to your static/css/style.css */
.form-success-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #e6f9ed;
    border: 1.5px solid #22c55e;
    color: #15803d;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    animation: fadeInScale 0.4s;
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8);}
    to { opacity: 1; transform: scale(1);}
}