/* 
 * Sefa Visa - Official Visa Application Center
 * Apple-Inspired Government UI Design System
 * Complete Visual Reset
 */

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-gutter: stable;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
}

/* ========================================
   COLOR SYSTEM (STRICT)
   ======================================== */

:root {
    --navy: #1f1b49;
    --red: #e30613;
    --white: #ffffff;
    --light-gray: #f5f5f9;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --border-color: #d2d2d7;
}

/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

/* ========================================
   LAYOUT SYSTEM
   ======================================== */

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 22px;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ========================================
   BUTTON SYSTEM (FLAT, 6PX RADIUS)
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #c00511;
    opacity: 1;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--red);
    border: 1px solid var(--red);
}

.btn-secondary:hover {
    background-color: var(--red);
    color: var(--white);
    opacity: 1;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ========================================
   HEADER - APPLE-STYLE SINGLE ROW
   ======================================== */

.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 57px;
    gap: 40px;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo .logo-image {
    height: 32px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-primary);
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

.nav-link.active {
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.header-btn {
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header-btn-primary {
    background-color: var(--red);
    color: var(--white);
}

.header-btn-primary:hover {
    background-color: #c00511;
    opacity: 1;
}

.header-btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.header-btn-secondary:hover {
    border-color: var(--red);
    color: var(--red);
    opacity: 1;
}

.mobile-language-toggle {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-language {
    flex-shrink: 0;
}

.mobile-language-dropdown {
    display: none;
}

.language-selector {
    position: relative;
}

.language-dropdown {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 4px 24px 4px 8px;
    border: none;
    border-radius: 0;
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%231d1d1f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.language-dropdown:hover {
    opacity: 0.6;
}

.language-dropdown:focus {
    outline: none;
}

/* ========================================
   FOOTER - INSTITUTIONAL
   ======================================== */

.site-footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 0 0;
    margin-top: 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--red);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-image {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-signature-section {
    text-align: center;
    margin: 32px 0;
}

.footer-signature {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    letter-spacing: 0.02em;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--white);
    opacity: 1;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-row a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-links-row a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-bottom {
    padding-top: 32px;
    padding-bottom: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ========================================
   LANDING PAGE - INSTITUTIONAL DESIGN
   ======================================== */

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(227, 6, 19, 0.60) 0%,
        rgba(31, 27, 73, 0.50) 100%
    );
    z-index: 1;
}

.landing-page {
    margin: 0;
    padding: 0;
    background-color: transparent;
    min-height: 100vh;
    position: relative;
}

.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.landing-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(210, 210, 215, 0.3);
    padding: 24px 0;
}

.landing-logo {
    text-align: center;
}

.landing-logo .logo-image {
    height: 48px;
    width: auto;
    display: inline-block;
}

.landing-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 60px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.landing-statement {
    text-align: center;
    margin-bottom: 80px;
}

.landing-welcome {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.landing-statement p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.country-selection {
    width: 100%;
    margin-bottom: 80px;
}

.country-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(210, 210, 215, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.country-item {
    display: flex;
    align-items: center;
    padding: 20px 28px;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.country-item:nth-child(2n) {
    border-right: none;
}

.country-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.country-item:hover {
    background-color: #f5f5f7;
    opacity: 1;
    transform: translateX(2px);
}

.country-item .country-flag {
    width: 32px;
    height: 24px;
    margin-right: 16px;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.country-item .country-name {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.landing-warning {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(210, 210, 215, 0.3);
    border-radius: 6px;
    padding: 40px;
    border-left: 4px solid var(--red);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.warning-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.warning-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.warning-content p:last-child {
    margin-bottom: 0;
}

.landing-footer {
    padding: 32px 24px;
    text-align: center;
    background-color: #fafafa;
}

.landing-footer p {
    font-size: 0.75rem;
    color: #86868b;
    margin: 0;
}

/* ========================================
   HERO SECTION - NAVY BACKGROUND (APPLE-STYLE)
   ======================================== */

.hero-section {
    background-image: url('/assets/images/bannerbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(31, 27, 73, 0.65);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   SHEPHERD VISA ANNOUNCEMENT BANNER
   ======================================== */

.shepherd-announcement-section {
    padding: 48px 0 0 0;
    background-color: var(--white);
}

.shepherd-announcement-banner {
    background: linear-gradient(135deg, #e30613 0%, #c5050f 100%);
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 0;
    box-shadow: 0 4px 16px rgba(227, 6, 19, 0.15);
    position: relative;
    overflow: hidden;
}

.shepherd-announcement-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f1b49 0%, #2d2766 100%);
}

.shepherd-announcement-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.shepherd-announcement-text {
    flex: 1;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.shepherd-announcement-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: var(--white);
    color: var(--navy);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.shepherd-announcement-link:hover {
    background-color: #f5f5f9;
    transform: translateY(-2px);
}

.shepherd-announcement-link svg {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

/* ========================================
   ACTION CARDS - FUNCTIONAL ENTRY POINTS
   ======================================== */

.action-cards-section {
    padding: 80px 0;
    background-color: var(--white);
}

.action-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.action-entry-card {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.2s ease;
    background-color: var(--white);
    display: block;
}

.action-entry-card:hover {
    border-color: var(--red);
    opacity: 1;
}

.action-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: var(--red);
    stroke: var(--red);
    stroke-width: 2;
}

.action-entry-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.action-entry-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ========================================
   HORIZONTAL SLIDER - CONTINUOUS LOOP
   ======================================== */

.horizontal-slider {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.horizontal-slider:active {
    cursor: grabbing;
}

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

.horizontal-slider::before,
.horizontal-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 2;
    pointer-events: none;
}

.horizontal-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.horizontal-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.slider-track-horizontal {
    display: flex;
    gap: 24px;
    animation: scroll-horizontal 20s linear infinite;
}

.slider-image {
    height: 400px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.slider-track-horizontal:hover {
    animation-play-state: paused;
}

/* ========================================
   ACTION BLOCKS - HOMEPAGE
   ======================================== */

.action-blocks {
    padding: 80px 0;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.action-card {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.action-card:hover {
    border-color: #1f1b49;
}

.action-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    width: 40px;
    height: 40px;
    stroke: #1f1b49;
}

.action-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1b49;
    margin-bottom: 12px;
}

.action-card p {
    font-size: 0.9375rem;
    color: #666666;
    margin-bottom: 24px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #e30613;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c00511;
}

.btn-secondary {
    background-color: transparent;
    color: #1f1b49;
    border: 1px solid #1f1b49;
}

.btn-secondary:hover {
    background-color: #1f1b49;
    color: #ffffff;
}

/* ========================================
   IMAGE SLIDER SECTION
   ======================================== */

.slider-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.slider-section h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.slider-dot.active {
    background-color: #1f1b49;
}

/* ========================================
   ANNOUNCEMENTS SECTION - MANDATORY
   ======================================== */

.announcements-section {
    padding: 80px 0;
}

.announcements-section h2 {
    font-size: 2.25rem;
    margin-bottom: 50px;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.announcement-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 30px;
    transition: border-color 0.2s ease;
}

.announcement-item:hover {
    border-color: #1f1b49;
}

.announcement-date {
    font-size: 0.875rem;
    color: #999999;
    margin-bottom: 12px;
}

.announcement-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1b49;
    margin-bottom: 12px;
}

.announcement-item p {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
}

.view-all-link {
    display: inline-block;
    margin-top: 30px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #e30613;
}

.view-all-link:hover {
    color: #c00511;
}

/* ========================================
   CONTENT SECTIONS - GENERAL
   ======================================== */

.content-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 50px;
}

/* ========================================
   VISA TYPES PAGE
   ======================================== */

.visa-types-grid {
    display: grid;
    gap: 40px;
}

.visa-type-card {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 40px;
}

.visa-type-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f1b49;
    margin-bottom: 16px;
}

.visa-type-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.visa-type-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f1b49;
    margin-bottom: 16px;
}

.visa-type-card ul {
    list-style: none;
    padding-left: 0;
}

.visa-type-card li {
    font-size: 0.9375rem;
    color: #666666;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.visa-type-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #e30613;
}

/* ========================================
   CONTACT PAGE - MULTI-BRANCH
   ======================================== */

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

.branch-card {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}

.branch-info {
    padding: 30px;
}

.branch-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f1b49;
    margin-bottom: 20px;
}

.branch-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.branch-detail svg {
    width: 20px;
    height: 20px;
    stroke: #1f1b49;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-detail p {
    font-size: 0.9375rem;
    color: #4a4a4a;
    margin: 0;
}

.branch-map {
    width: 100%;
    height: 250px;
    border-top: 1px solid #e5e5e5;
}

.branch-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   CONTACT FORM - MINIMAL
   ======================================== */

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f1b49;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f1b49;
}

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

/* ========================================
   ANNOUNCEMENTS SECTION (VFS-STYLE)
   ======================================== */

.announcements-section {
    padding: 80px 0;
}

.announcement-list {
    max-width: 800px;
    margin: 0 auto;
}

.announcement-item {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 32px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.announcement-item:hover {
    border-color: var(--navy);
}

.announcement-date {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(227, 6, 19, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
}

.announcement-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.announcement-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background-color: var(--navy);
    padding: 104px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   CONTENT SECTIONS (ALTERNATING BACKGROUNDS)
   ======================================== */

.content-section {
    padding: 80px 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--red);
}

.content-block p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-item {
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: border-color 0.2s ease;
}

.service-item:hover {
    border-color: var(--navy);
}

.service-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ========================================
   VISA CATEGORIES (STRUCTURED)
   ======================================== */

.visa-category {
    max-width: 800px;
    margin: 0 auto;
}

.visa-category-header {
    margin-bottom: 32px;
}

.visa-category-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 16px;
}

.visa-category-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--red);
}

.visa-category-header p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.visa-category-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.document-list {
    list-style: none;
    padding: 0;
}

.document-list li {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.document-list li:last-child {
    border-bottom: none;
}

.document-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* ========================================
   APPLE-LEVEL VISUAL DETAILS
   ======================================== */

.section-header-premium {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-premium h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--red);
    margin: 0 auto;
}

/* Info Blocks - Apple-inspired strong blocks */
.info-block-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-block-card {
    background: linear-gradient(135deg, var(--navy) 0%, #2a2560 100%);
    border-radius: 12px;
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--red);
}

.info-block-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--red);
}

.info-block-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.info-block-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: var(--white);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 16px 24px 24px 24px;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0;
    padding-left: 20px;
}

.faq-answer ul li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

/* Legal Content Styles */
.legal-content {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 48px;
    background-color: var(--white);
}

.legal-content > p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.legal-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-section ul li {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 32px 24px;
    }
    
    .legal-section h2 {
        font-size: 1rem;
    }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-unified-container {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 48px;
    background-color: var(--white);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
}

.contact-info-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-detail-item p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-map-column {
    min-height: 450px;
    border-radius: 4px;
    overflow: hidden;
}

.contact-form-section {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 48px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-row .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 60px;
    line-height: 1.6;
}

/* ========================================
   VISA FILTER
   ======================================== */

.visa-filter-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visa-type-select {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--white);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.2s ease;
    min-width: 200px;
}

.visa-type-select:focus {
    outline: none;
    border-color: var(--red);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .action-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branch-details {
        grid-template-columns: 1fr;
    }
    
    .slider-image {
        height: 300px;
        width: auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header-content {
        height: auto;
        padding: 12px 0;
        gap: 0;
        justify-content: space-between;
    }
    
    .header-logo {
        flex: 0 0 auto;
    }
    
    .header-nav,
    .header-actions,
    .header-language {
        display: none;
    }
    
    .mobile-icons-group {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 60px 24px 24px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    .header-nav .nav-link {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
    }
    
    .header-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 24px 0 0 0;
        margin-top: 24px;
        border-top: 1px solid var(--border-color);
    }
    
    .header-actions .header-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
    
    .header-language {
        display: none;
    }
    
    .mobile-language-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-primary);
        padding: 0;
        margin: 0;
        transition: all 0.2s ease;
    }
    
    .mobile-language-toggle:hover {
        opacity: 0.7;
    }
    
    .mobile-language-toggle.active {
        color: var(--red);
    }
    
    .mobile-language-dropdown {
        display: block;
        position: fixed;
        top: 60px;
        right: 16px;
        min-width: 150px;
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.2s ease;
        z-index: 1002;
        overflow: hidden;
    }
    
    .mobile-language-dropdown.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-lang-item {
        display: block;
        padding: 12px 16px;
        color: var(--text-primary);
        text-decoration: none;
        font-size: 0.9375rem;
        transition: background-color 0.2s ease;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-lang-item:last-child {
        border-bottom: none;
    }
    
    .mobile-lang-item:hover {
        background-color: var(--light-gray);
    }
    
    .mobile-lang-item.active {
        background-color: var(--light-gray);
        font-weight: 600;
        color: var(--red);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-unified-container {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    
    .contact-map-column {
        min-height: 300px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form .form-row .form-group {
        margin-bottom: 28px;
    }
    
    .info-block-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-block-card {
        padding: 32px 24px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-signature-section {
        margin: 24px 0;
    }
    
    .footer-signature {
        font-size: 1.25rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-row {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .slider-image {
        height: 280px;
        width: auto;
    }
    
    .horizontal-slider::before,
    .horizontal-slider::after {
        width: 80px;
    }
    
    .announcement-item {
        padding: 24px;
    }
    
    .branch-card {
        padding: 24px;
    }
    
    .visa-filter-dropdown {
        flex-direction: column;
        align-items: stretch;
    }
    
    .visa-type-select {
        width: 100%;
    }
    
    .language-dropdown {
        min-width: 120px;
        font-size: 0.875rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .landing-logo h1 {
        font-size: 2.5rem;
    }
    
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-links-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .country-list {
        grid-template-columns: 1fr;
    }
    
    .country-item {
        padding: 16px 24px;
    }
    
    .landing-main {
        padding: 60px 20px 40px;
    }
    
    .landing-welcome {
        font-size: 2.5rem;
    }
    
    .landing-statement p {
        font-size: 1rem;
    }
    
    .shepherd-announcement-banner {
        padding: 20px 24px;
        margin-bottom: 32px;
    }
    
    .shepherd-announcement-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .shepherd-announcement-text {
        font-size: 0.9375rem;
    }
    
    .shepherd-announcement-link {
        width: 100%;
        justify-content: center;
    }
}
