/*
Theme Name: Global Immigration
Theme URI: https://globalimmigration.com
Description: Professional WordPress theme for immigration business services
Version: 1.0
Author: Global Immigration Team
*/

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ===========================
   Header Styles
   =========================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: #003366;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: #FFD700;
}

.main-navigation {
    padding: 15px 0;
}

.main-navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #003366;
    font-size: 28px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu > li > a {
    color: #333;
    font-weight: 500;
    padding: 10px 5px;
    display: block;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    color: #003366;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: #333;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #003366;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #003366;
    margin: 3px 0;
}

/* ===========================
   Button Styles
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #003366;
    color: #fff;
}

.btn-primary:hover {
    background: #002244;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #FFD700;
    color: #003366;
}

.btn-secondary:hover {
    background: #FFC700;
    transform: translateY(-2px);
}

.btn-apply {
    background: #FFD700;
    color: #003366;
    padding: 10px 25px;
    border-radius: 5px;
}

.btn-apply:hover {
    background: #FFC700;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-link {
    color: #003366;
    font-weight: 600;
}

.btn-link:hover {
    color: #002244;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 51, 102, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ===========================
   Sections
   =========================== */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #003366;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-section,
.countries-section,
.why-choose-section {
    padding: 80px 0;
}

.services-section {
    background: #f9f9f9;
}

/* ===========================
   Service Cards
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

/* ===========================
   Country Cards
   =========================== */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.country-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.country-card:hover img {
    transform: scale(1.1);
}

.country-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: #fff;
}

.country-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ===========================
   Features
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-box i {
    font-size: 48px;
    color: #003366;
    margin-bottom: 20px;
    display: block;
}

.feature-box h4 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, #003366 0%, #005599 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
    background: #1a1a1a;
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-list i {
    margin-right: 10px;
    color: #FFD700;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social a:hover {
    background: #FFD700;
    color: #003366;
}

.footer-bottom {
    background: #000;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 20px;
    list-style: none;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===========================
   Page Banner
   =========================== */
.page-banner {
    background: linear-gradient(135deg, #003366 0%, #005599 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.banner-overlay h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 16px;
    opacity: 0.9;
}

/* ===========================
   About Page
   =========================== */
.about-intro {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.stat-box h3 {
    color: #003366;
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-box p {
    color: #666;
    font-size: 14px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-vision {
    background: #f9f9f9;
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-box h3 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-box ul {
    list-style: none;
    padding-left: 0;
}

.mission-box ul li:before {
    content: "✓ ";
    color: #FFD700;
    font-weight: bold;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-member h4 {
    color: #003366;
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member .role {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-us-detailed {
    background: #f9f9f9;
    padding: 80px 0;
}

.features-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #003366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #003366;
    margin-bottom: 10px;
}

/* ===========================
   Contact Page
   =========================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-section h2 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 32px;
    width: 50px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #003366;
    margin-bottom: 5px;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.social-connect {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icon {
    padding: 10px 20px;
    background: #003366;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.social-icon:hover {
    background: #FFD700;
    color: #003366;
}

.contact-form-section h2 {
    color: #003366;
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.map-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===========================
   Visa Pages
   =========================== */
.visa-intro {
    padding: 60px 0;
}

.visa-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.visa-main h2 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 20px;
}

.visa-main h3 {
    color: #003366;
    font-size: 24px;
    margin: 40px 0 20px;
}

.visa-main h4 {
    color: #003366;
    font-size: 20px;
    margin: 30px 0 15px;
}

.visa-main h5 {
    color: #003366;
    font-size: 18px;
    margin-bottom: 10px;
}

.visa-main p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.visa-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.visa-image img {
    width: 100%;
    height: auto;
}

.country-detail {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.country-info-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 20px;
}

.country-info-detailed img {
    border-radius: 8px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.country-text ul {
    margin: 15px 0;
    padding-left: 20px;
}

.country-text ul li {
    margin-bottom: 8px;
    color: #666;
}

.benefits-list {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.benefits-list li {
    margin-bottom: 10px;
    color: #666;
    padding-left: 10px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #003366;
}

.video-section {
    margin: 40px 0;
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Sidebar */
.visa-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.sidebar-widget h3 {
    color: #003366;
    font-size: 20px;
    margin-bottom: 15px;
}

.apply-widget {
    background: linear-gradient(135deg, #003366 0%, #005599 100%);
    color: #fff;
    text-align: center;
}

.apply-widget h3 {
    color: #fff;
}

.btn-block {
    width: 100%;
    display: block;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 12px;
}

.sidebar-links a {
    color: #666;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.sidebar-links a:hover {
    color: #003366;
    padding-left: 10px;
}

.contact-widget {
    background: #003366;
    color: #fff;
}

.contact-widget h3 {
    color: #FFD700;
}

.contact-widget p {
    margin-bottom: 10px;
}

/* ===========================
   Application Form
   =========================== */
.application-section {
    padding: 60px 0;
}

.application-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.application-intro h2 {
    color: #003366;
    font-size: 32px;
    margin-bottom: 15px;
}

.application-form {
    max-width: 1000px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.form-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-section h3 {
    color: #003366;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
}

.full-width {
    grid-column: 1 / -1;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-label input {
    margin-top: 4px;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.application-footer {
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
}

.support-info h3 {
    color: #003366;
    font-size: 24px;
    margin-bottom: 15px;
}

.support-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.support-item {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
}

/* ===========================
   Additional Responsive
   =========================== */
@media (max-width: 768px) {
    .about-content,
    .contact-grid,
    .visa-content {
        grid-template-columns: 1fr;
    }
    
    .country-info-detailed {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .visa-sidebar {
        position: static;
    }
}
