/* --- CSS VARIABLES --- */
:root {
    --primary: #0c3b63;
    /* Dark Navy from reference */
    --accent-orange: #eb7023;
    /* Vibrant Orange from reference */
    --accent-blue: #0056b3;
    /* Button Highlight */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --footer-bg: #111;
}

html {
    scroll-behavior: smooth;
}

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

body {
    /* "Montserrat" is for all normal text */
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Keep "Cinzel" for your Logo and big Headings */
h1,
h2,
h3,
.logo,
.footer-logo,
.brand-name {
    font-family: 'Cinzel', serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- NAVIGATION --- */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

/* --- NAVIGATION DROPDOWN STYLES --- */

/* 1. Parent Item Container */
.dropdown-item {
    position: relative;
    /* Needed to position the dropdown menu absolute to this */
    padding-bottom: 10px;
    /* Bridge gap so mouse doesn't lose focus */
    margin-bottom: -10px;
    /* Compensate for padding */
}

/* 2. The Dropdown Menu (Hidden by Default) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    /* Position directly below */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    /* Center horizontally + Offset down */
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border-top: 3px solid var(--accent-orange);
    /* Orange accent line */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
    padding: 10px 0;
}

/* 3. Hover Effect: Show Menu */
.dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    /* Slide up into place */
}

/* 4. Dropdown Links Styling */
.dropdown-menu li {
    display: block;
    margin: 0;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.3s;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Link Hover Effect (Slide & Color) */
.dropdown-menu li a:hover {
    background: #fff5f0;
    /* Light orange tint */
    color: var(--accent-orange);
    padding-left: 25px;
    /* Subtle slide right animation */
}

/* --- MOBILE MENU ADJUSTMENTS --- */
/* On mobile, we want the sub-menu to be static, not a popup */
@media (max-width: 768px) {
    .dropdown-item {
        width: 100%;
        text-align: center;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .dropdown-menu {
        position: static;
        /* Stack naturally */
        transform: none;
        box-shadow: none;
        border-top: none;
        background: rgba(0, 0, 0, 0.1);
        /* Slightly darker background inside drawer */
        width: 100%;
        min-width: 100%;
        display: none;
        /* Hidden until clicked/hovered */
        opacity: 1;
        visibility: visible;
        padding: 0;
    }

    /* Reveal dropdown on hover (or tap) on mobile */
    .dropdown-item:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: #ddd;
        /* Light text for dark mobile menu bg */
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-menu li a:hover {
        background: transparent;
        color: var(--accent-orange);
        padding-left: 15px;
        /* No slide on mobile */
    }
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    line-height: 0.9;
    letter-spacing: 0.5px;
}

.brand-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: #555;
    text-transform: capitalize;
    margin-top: 3px;
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.btn-quote {
    background: var(--accent-orange);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
}

.btn-quote:hover {
    background: #d35400;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 2000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: #fff;
        font-size: 1.2rem;
        margin: 1.5rem 0;
        display: block;
    }

    .close-menu {
        display: block;
    }
}

/* --- HERO CAROUSEL --- */
.carousel-container {
    position: relative;
    height: 90vh;
    margin-top: 60px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: var(--accent-orange);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* --- GENERIC SECTION STYLES --- */
section:not(#about) {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* --- ABOUT SECTION (CONTAINER) --- */
#about {
    width: 100%;
    padding: 0;
    background: #fff;
    margin-top: 5rem;
}

/* 1. Collage Layout */
.about-top-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 5rem auto;
    padding: 0 2rem;
}

.about-collage {
    position: relative;
    height: 550px;
    flex: 1;
}

.collage-img-large {
    width: 85%;
    height: 85%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.collage-img-small {
    width: 55%;
    height: 55%;
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 2;
    border: 8px solid #fff;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.collage-decor {
    width: 120px;
    height: 120px;
    background-image: repeating-linear-gradient(135deg, var(--accent-orange) 0px, var(--accent-orange) 2px, transparent 2px, transparent 12px);
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 0;
    opacity: 0.6;
}

.about-text-content {
    flex: 1;
}

.sub-heading {
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-orange);
    display: inline-block;
}

.about-text-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn-text {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

/* --- 2. MISSION & VISION (GAPPED BLOCK LAYOUT) --- */
.mv-split-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* Spacing on the far left and right */
    padding: 0 30px;
    /* Max width to keep content centered */
    max-width: 1260px;
    margin: 0 auto;
}

.mv-row {
    display: flex;
    width: 100%;
    /* Gaps between the left and right blocks */
    gap: 30px;
    /* Vertical space between Mission row and Vision row */
    margin-bottom: 30px;
    min-height: 550px;
}

/* Remove bottom margin from the last row */
.mv-row:last-child {
    margin-bottom: 0;
}

.mv-text-box,
.mv-image-box {
    flex: 1;
    /* Calculate width automatically */
    border-radius: 8px;
    /* Rounded corners for separate blocks */
    overflow: hidden;
    /* Clip content to radius */
}

.mv-image-box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100%;
}

.mv-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem;
    /* Adjusted padding */
    color: #fff;
    position: relative;
}

/* Colors matching reference */
.blue-bg {
    background-color: var(--primary);
}

.orange-bg {
    background-color: var(--accent-orange);
}

/* Icons & Typography */
.mv-big-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 1;
    -webkit-text-stroke: 1px transparent;
}

.mv-text-box h3 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Segoe UI', sans-serif;
}

.mv-text-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-text-box ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Thin Arrow Bullet */
.mv-text-box ul li::before {
    content: '\2192';
    font-family: sans-serif;
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 0px;
    font-size: 1.2rem;
    color: #fff;
}

/* --- 3. VALUES GRID (VERTICAL 3D FLIP) --- */
.values-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.values-grid-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

/* The Container Card */
.v-flip-card {
    background-color: transparent;
    height: 300px;
    /* Fixed height for the flip area */
    perspective: 1000px;
    /* Essential for 3D effect */
    cursor: pointer;
}

/* The Inner Wrapper (Doing the Flip) */
.v-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth bounce */
    transform-style: preserve-3d;
}

/* Hover Trigger: Flip Top-to-Bottom (Rotate X axis) */
.v-flip-card:hover .v-flip-inner {
    transform: rotateX(180deg);
}

/* Common Styles for Front and Back Faces */
.v-flip-front,
.v-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* --- FRONT FACE --- */
.v-flip-front {
    background-size: cover;
    background-position: center;
    color: white;
}

.v-front-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.v-front-overlay i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.v-front-overlay h4 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    padding: 0 20px;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

/* --- BACK FACE --- */
.v-flip-back {
    /* Top-to-Bottom flip requires the back to be pre-rotated on X axis */
    transform: rotateX(180deg);
    /* Premium Gradient Background (Dark Navy) */
    background: linear-gradient(135deg, var(--primary) 0%, #001f3f 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-orange);
    /* Subtle border */
}

.v-back-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.v-back-content .small-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.v-back-content h4 {
    font-size: 1.2rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.v-back-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive About */
@media (max-width: 900px) {
    .about-top-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 0 2rem 3rem 2rem;
    }

    .about-collage {
        width: 100%;
        height: 350px;
        flex: none;
    }

    .mv-split-container {
        padding: 0 15px;
    }

    /* Smaller padding on mobile */
    .mv-row {
        flex-direction: column;
        min-height: auto;
        gap: 20px;
        margin-bottom: 20px;
    }

    .mv-text-box,
    .mv-image-box {
        width: 100%;
        flex: none;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .mv-image-box {
        height: 250px;
    }

    .mv-text-box {
        padding: 3rem 2rem;
    }

    .mv-text-box h3 {
        font-size: 2.2rem;
    }
}

/* --- TECHNICAL TABLE STYLES --- */
.grade-table-container {
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.grade-table-container h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.table-responsive {
    overflow-x: auto;
    /* Allows scrolling on small screens */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    /* Ensures text doesn't squish too much */
    background: #fff;
}

.tech-table th,
.tech-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.tech-table th {
    background-color: var(--primary);
    /* Navy Blue Header */
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Zebra Striping for readability */
.tech-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tech-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

/* Highlight the first column (Grade) */
.tech-table td:first-child {
    font-weight: 700;
    color: var(--primary);
    background-color: #f4f4f4;
}

/* Highlight the last column (Al) */
.tech-table td:last-child {
    font-weight: 700;
    color: var(--accent-orange);
}

.tech-table tbody tr:hover {
    background-color: #eef2f5;
}

/* --- OTHER SECTIONS & FOOTER (Standard) --- */
.slider-wrapper {
    position: relative;
}

.slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    scrollbar-width: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

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

.card-img {
    height: 200px;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-nav-btn.prev-slide {
    left: -20px;
}

.slider-nav-btn.next-slide {
    right: -20px;
}

footer {
    background-color: #111;
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 2rem 4rem 2rem;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-links li::before {
    content: '\f192';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-orange);
    margin-right: 10px;
    font-size: 0.8rem;
}

.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.footer-sub {
    font-family: 'Playfair Display', serif;
    color: #bbb;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.btn-connect {
    background: var(--accent-blue);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-info {
    font-size: 0.95rem;
    color: #ccc;
}

.contact-name {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
    color: #aaa;
    padding-right: 80px;
}

.social-icons a {
    color: var(--accent-orange);
    margin-left: 15px;
    font-size: 1.1rem;
}

.scroll-top {
    background: var(--accent-orange);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 999;
}

/* Contact Section */
.contact-section {
    background-color: #f4f4f4;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.contact-info-box {
    flex: 1;
    min-width: 350px;
    background: var(--primary);
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.contact-info-box p {
    color: #ccc;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--accent-orange);
    margin-top: 5px;
}

.contact-form-box {
    flex: 1;
    min-width: 350px;
    padding: 3rem;
}

.contact-form-box h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: var(--accent-orange);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #d35400;
}

@media (max-width: 768px) {

    .contact-container,
    .footer-content {
        flex-direction: column;
    }

    .footer-center {
        order: -1;
        margin-bottom: 2rem;
    }

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