/* ============================
   VARIABLES
============================ */
:root {
    --primary: #14325f;
    --accent: #d4af37;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --text-dark: #1f2d3d;
    --text-muted: #4a4a4a;
    --border-light: rgba(200,212,242,0.4);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 6px 18px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 36px rgba(0,0,0,0.12);
    --transition: 0.4s ease;
    --font-heading: "Cinzel", "Georgia", serif;
    --font-body: "Segoe UI", Arial, sans-serif;
}

/* ============================
   GENERAL
============================ */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding-top: 10px;
    line-height: 1.7;
}

/* ============================
   NAVBAR
============================ */
.navbar {
    width: 100%;
    height: 80px;
    padding: 0 50px;
    background: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.home-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.logo-text {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* MENU */
.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    font-size: 12px;
    position: relative;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    color: var(--accent);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* MOBILE NAV */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        display: none;
        padding: 25px 0;
        box-shadow: var(--shadow-lg);
    }

    .menu.open {
        display: block;
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
}

/* ============================
   CONNECT SECTION
============================ */
.connect-section {
    padding: 80px 20px;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: var(--accent);
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* GRID */
.connect-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ============================
   CONTACT INFO
============================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: 0.2s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.info-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 18px;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.info-content p,
.info-content a {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

/* ============================
   CONTACT FORM
============================ */
.contact-form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid #cbd4e1;
    font-size: 15px;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #10284c;
    transform: translateY(-2px);
}

/* ============================
   RESPONSIVE GRID
============================ */
@media (max-width: 900px) {
    .connect-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================
   FOOTER
============================ */
.footer {
    background-color: #1a3f7a;
    color: #eaf0ff;
    padding: 25px 15px;
    text-align: center;
    margin-top: 80px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #eaf0ff;
}

.footer-copy {
    font-size: 12px;
    color: #c8d4f2;
}

@media (max-width: 768px) {
    .footer-container {
        gap: 8px;
    }
}
