/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400&family=Rajdhani:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    /* General */
    --bg-color: #0f1115;
    --text-main: #e8edf2;
    --text-muted: #b7bcc6;
    --text-dark: #dcdfe6;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Home specific */
    --blue: #38b6ff;
    --blue-dim: rgba(56, 182, 255, 0.3);
    --white: #e8edf2;
    --silver-light: #a0aab2;
    --silver: #7a848d;
    --border: rgba(255, 255, 255, 0.08);
    --bg-dark: rgba(7, 10, 15, 0.85);

    /* Transitions & Sizing */
    --transition-speed: 0.4s;
    --transition: 0.4s cubic-bezier(.4, 0, .2, 1);
    --container-padding: 0 max(5%, 20px);
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--text-muted);
}

img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-load {
    animation: fadeIn 1s ease-out forwards;
}

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(.2, .65, .3, 1);
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
    color: var(--silver-light);
}

/* --- Navigation --- */
header {
    max-width: 1800px;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 20px clamp(20px, 5vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
    /* ensured it stays above */
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-wrap: wrap;
    gap: 20px;
}

header .logo {
    font-weight: bold;
    letter-spacing: 2px;
    width: 200px;
}

header .logo img {
    width: 100%;
    /* Ensures the image responds nicely within the wrapper wrapper */
    height: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: max(15px, 2vw);
    flex-wrap: wrap;
}

nav ul li a.active {
    color: #fff;
    background: #000;
    padding: 6px 12px;
    border-radius: 4px;
}

/* =========================================
    HOME PAGE (Hero)
    ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #050a10;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 12, 24, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
    /* margin-top: -80px; */
}

.hero-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--blue-dim);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(48px, 6vw, 85px);
    line-height: 1.05;
    letter-spacing: 1px;
    color: var(--white);
    /*color: var(--silver-light);*/
    margin: 0;
}

.hero-title em {
    font-style: italic;
    color: var(--blue);
    display: block;
    margin: 5px 0;
}

.hero-sub {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--silver-light);
    /*line-height: 1.8;*/
    margin: 28px auto 0;
    max-width: 650px;
}

.stats-bar {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    width: 100%;
    max-width: 800px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.stat-item {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item.active {
    background: linear-gradient(180deg, rgba(56, 182, 255, 0.1) 0%, transparent 100%);
}

.stat-item.active::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue);
    box-shadow: 0 0 15px rgba(56, 182, 255, 0.6);
}

.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--blue);
    letter-spacing: 1px;
    line-height: 1;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver);
    margin-top: 8px;
}

/* =========================================
    NEXUS PAGE STYLES (Profile & Awards)
    ========================================= */
.intro-statement {
    padding: clamp(120px, 12vw, 180px) clamp(20px, 6vw, 100px) 0;
}


.intro-statement p {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--silver-light);
    /* line-height: 1.8; */
    max-width: 750px;
    /* font-size: clamp(1.4rem, 3vw, 2.4rem); */
    /*font-weight: 300;*/
    /*line-height: 1.8;*/
    /*margin-bottom: 30px;*/
    /*font-size:15px;*/
}

.two-col-layout {
    padding: 0 clamp(20px, 6vw, 100px);
    margin: 0 auto clamp(80px, 12vw, 160px);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
    margin-top: 85px;
}

.mt-5 {
    margin-top: 3rem;
}

.col-left h2 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 400;
    position: sticky;
    top: 120px;
}

.section-intro {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--silver-light);
    /* line-height: 1.8; */
    max-width: 750px;
    margin-top: 20px;
    /*font-size: 0.95rem;*/
    /*color: var(--text-muted);*/
    /*line-height: 1.8;*/
    /*opacity: 0.8;*/
}

.em-style {

    font-style: italic;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 14px;

}

.profile-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text {
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.label-leadership {
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    letter-spacing: 2.5px;
}

.profile-name {
    color: var(--text-main);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin: 0 0 0.25rem 0;
    letter-spacing: -1px;
}

.profile-title {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 2.5rem 0;
    letter-spacing: 1.5px;
}

.profile-bio {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 3rem 0;
    font-weight: 300;
    max-width: 90%;
}

.profile-quote {
    border-left: 2px solid #60a5fa;
    padding-left: 25px;
    margin: 0;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
}

.list-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.list-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

.award-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.award-title h3 {
    font-weight: 500;
    margin-bottom: 6px;
}

.award-title p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.award-details ul {
    list-style: none;
}

.award-details li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.award-details li::before {
    content: "•";
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .two-col-layout {
        grid-template-columns: 1fr;
    }

    .col-left h2 {
        position: relative;
        top: 0;
    }

    .section-intro {
        max-width: 100%;
    }

    .award-row {
        grid-template-columns: 1fr;
    }
}

/* =========================================
    CAPABILITIES / PROJECT PAGE STYLES
    ========================================= */
.container {
    margin: auto;
}

.what-we-master {
    margin: clamp(80px, 10vw, 120px) auto;
    width: min(1200px, 90%);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: clamp(30px, 5vw, 60px);
    margin: clamp(80px, 10vw, 120px) auto;
    width: min(1200px, 90%);
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-row.show {
    opacity: 1;
    transform: translateY(0);
}

.feature-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-video-col {
    flex: 1.8;
}

.feature-box {
    background: linear-gradient(145deg, #1c1c1c, #111);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(25px, 3vw, 40px);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-heading {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Cormorant Garamond', serif;
}

.feature-desc {
    color: #cccccc;
    line-height: 1.7;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
}

/* Updated Capabilities Card Design */
.feature-content-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(10px, 2vw, 10px);
    /* background: #090c12; */
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: 0.4s ease;
    border-radius: 25px;
}

.feature-content-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #4a7a9c;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: #f0f0f0;
    margin: 0;
    line-height: 1.1;
}

.feature-paragraph {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    color: #929ba8;
    /* line-height: 1.8; */
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #355d7a;
    border: 1px solid rgba(53, 93, 122, 0.3);
    padding: 8px 16px;
    background: transparent;
    transition: 0.3s ease;
}

.feature-tag:hover {
    color: #4a7a9c;
    border-color: rgba(74, 122, 156, 0.6);
    background: rgba(74, 122, 156, 0.05);
}

.feature-video {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.feature-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.feature-video:hover video {
    transform: scale(1.08);
}

.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-slider {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    height: clamp(280px, 33vw, 500px);
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.nav.prev {
    left: 20px;
}

.nav.next {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dots span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dots span.active {
    background: white;
}

@media (max-width: 1024px) {
    .feature-row {
        flex-direction: column;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }
}

/* =========================================
    CONTACT PAGE STYLES
    ========================================= */
.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(120px, 15vw, 180px) clamp(20px, 5vw, 80px) clamp(60px, 10vw, 100px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: start;
}

.contact-info {
    width: 100%;
}

.contact-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--white);
}

.contact-subtext {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-block h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 600;
}

.detail-block p,
.detail-block a {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.8;
    transition: var(--transition);
}

.detail-block a:hover {
    opacity: 0.7;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: clamp(40px, 4vw, 60px);
    transition: var(--transition);
}

.contact-form:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    padding: 12px 0;
    transition: all var(--transition-speed) ease;
    outline: none;
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--text-main);
}

.submit-btn {
    background-color: var(--text-main);
    color: var(--bg-color);
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-speed) ease;
    margin-top: 20px;
    width: fit-content;
}

.submit-btn .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

.submit-btn:hover .arrow {
    transform: translateX(6px);
}

@media (max-width: 992px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

/* =========================================
    GOOGLE REVIEW POPUP STYLES
    ========================================= */
.review-popup {
    position: fixed;
    right: 20px;
    top: 80px;
    width: 320px;
    background: linear-gradient(145deg, #1c1c1c, #111);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: hidden;
    transform: translateX(120%);
    transition: transform 0.5s ease;
}

.review-popup.show {
    transform: translateX(0);
}

.review-body {
    padding: 10px;
    color: #ccc;
    font-size: 14px;
}

.review-slider {
    position: relative;
    min-height: 110px;
    padding: 0 50px;
}

.review {
    display: none;
    font-size: 15px;
    line-height: 1.6;
}

.review.active {
    display: block;
}

.review-text {
    font-size: 12px;
    margin: 5px 0;
}

.review-name {
    font-size: 14px;
    font-weight: bold;
}

.review-rating {
    text-align: left;
    font-size: 14px;
    margin-top: 5px;
}

#closeReview {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

#closeReview:hover {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-btn.prev {
    left: 5px;
}

.slider-btn.next {
    right: 5px;
}


/* contact us */
.about-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 80px;
    align-items: start;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}

.section-title em {
    font-style: italic;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.director-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
    border-radius: 20px;
}

.why-list {
    list-style: none;
}

.director-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.director-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    /*color: var(--silver-light);*/
    line-height: 1.6;
    border-left: 2px solid var(--blue);
    padding-left: 20px;
}

.director-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin: 4px 0 20px;
}

.director-bio {
    /* font-size: 15px;
    color: var(--silver-light);
    line-height: 1.8; */
    margin-bottom: 24px;
}

.why-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--blue);
}

/* =========================================
    WHAT WE MASTER SECTION
    ========================================= */
.master-section {
    padding: clamp(80px, 10vw, 150px) var(--container-padding);
    background-color: var(--bg-color);
}

.master-content {
    max-width: 900px;
    margin: 0 auto;
}

.master-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.master-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--blue);
}

.master-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.master-title em {
    font-style: italic;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}



.master-paragraph {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--silver-light);
    /*line-height: 1.8;*/
    max-width: 750px;
}

/* footer */
.minimal-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #0b0f16;
    ;
    padding: 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    width: 100%;
    text-align: center;
}

.footer-catchphrase {
    color: #206bb5;
    font-size: 30px;
    font-style: italic;
    font-weight: normal;
    margin: 0 0 15px 0;
}

.footer-details {
    color: var(--silver-light);
    font-size: 15px;
    margin: 0;
}

/*Contact page*/
.new-submit-btn {
    background: var(--blue);
    color: #000;
    border: none;
    padding: 16px 32px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    width: fit-content;
    margin-top: 10px;
    transition: background 0.3s ease;
}

/* Contact Details & Info Overrides from View */
.contact-subtext {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
}
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-banner {
    display: flex;
    gap: 15px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 40px;
    color: var(--silver-light);
}
.contact-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.contact-info-box {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    color: var(--silver-light);
}

/* New Contact Form Overrides */
.new-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    background-color: #0b0f14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--silver-light);
    outline: none;
}
.form-group select option {
    background-color: #0b0f14;
}
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 14px 16px;
    border-radius: 2px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.form-group select {
    outline: none;
    /* border-color: var(--blue); */
    color: var(--silver-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
}
.contact-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--blue);
    font-size: 14px;
}
.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Contact Page Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        padding-top: 140px;
        gap: 60px;
    }
    .contact-info,
    .contact-form-wrapper {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-info-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 120px 20px 60px;
    }
    .contact-banner {
        padding: 20px;
    }
    .contact-info h1 {
        font-size: 2.2rem;
    }
}