/*
Theme Name: ImmiGo Theme
Description: Immigration and Visa Services WordPress Theme with WooCommerce Integration
Version: 1.0
Author: Custom Development
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Top Bar */
.top-bar {
    background: #f8f9fa;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3651BF;
}

.business-hours {
    color: #0D132E;
}

/* Header */
.main-header {
    background: #3651BF;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.main-nav a:hover {
    opacity: 0.8;
}

.cta-button {
    background: white;
    color: #3651BF;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    background: #3651BF;
    padding: 0;
    color: white;
    padding-top: 30px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    /*max-width: 70%;*/
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: #3651BF;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

.hero-buttons .btn-primary {
    background: white;
    color: #3651BF;
    border: 2px solid white;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f7fafc;
    border-color: #f7fafc;
    transform: translateY(-2px);
}

.hero-buttons .btn-primary:hover {
    background: #f7fafc;
    border-color: #f7fafc;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    background: white;
    color: #3651BF;
}

/* Services Section */
.services-section {
    padding: 0;
    background: #f8f9fa;
    position: relative;
    margin-top: -10vh;
    z-index: 10;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}


.services-container .services-grid>.service-card {
    transform: translateY(-10%);
}

.services-container .services-grid>.service-card:hover {
    transform: translateY(-15%);
}

.service-card.featured {
    background: #0D132E;
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #3651BF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.service-card.featured .service-icon {
    background: #ffd700;
    color: #0D132E;
}


.service-card .service-icon {
    background: unset !important;
}
.service-card .service-icon img{
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.service-card.featured p {
    color: #cbd5e0;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .header-content {
        gap: 20px;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text {
        max-width: 90%;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text {
        max-width: 95%;
    }
}