* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #012169; /* Royal Blue - UK Flag */
    --secondary: #C8102E; /* British Red - UK Flag */
    --accent: #FFFFFF; /* White - UK Flag */
    --dark: #2d3748;
    --light: #f8fafc;
    --gray: #718096;
    --success: #38a169;
    --gradient: linear-gradient(135deg, #012169 0%, #00194D 100%);
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background-color: var(--secondary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
    gap: 8px;
}

.btn:hover {
    background-color: #A50E2D;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(200, 16, 46, 0.4);
}

.btn-primary {
    background-color: var(--primary);
    box-shadow: 0 4px 12px rgba(1, 33, 105, 0.3);
}

.btn-primary:hover {
    background-color: #00194D;
    box-shadow: 0 6px 15px rgba(1, 33, 105, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    background: var(--gradient);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.auth-buttons a {
    text-decoration: none;
    font-weight: 500;
}

.auth-buttons .login {
    color: var(--primary);
    transition: color 0.3s;
}

.auth-buttons .login:hover {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section with Background Image */
.hero {
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/dominic-kurniawan-suryaputra-vjprN8SZq14-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 33, 105, 0.85) 0%, rgba(0, 25, 77, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    margin-right: 8px;
    color: #ffd700;
}

.hero-text h1 {
    font-size: 2.5 rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.key-points {
    margin-bottom: 30px;
}

.key-point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.key-point i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.key-point span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-section {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-subtext i {
    color: var(--secondary);
}

/* Calculator Section */
.calculator-section {
    flex: 1;
    max-width: 450px;
}

.calculator-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.calculator-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.calculator-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.calculator-icon {
    background: var(--gradient);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 33, 105, 0.1);
    background-color: white;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.price-display {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.price-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-note {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 8px;
}

.calculator-features {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.feature1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.feature-icon1 {
    width: 40px;
    height: 40px;
    background: rgba(1, 33, 105, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.feature-text1 {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
        max-width: 100%;
    }
    
    .calculator-section {
        max-width: 100%;
        width: 100%;
    }
    
    .cta-section {
        justify-content: center;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cta-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .calculator-card {
        padding: 25px 20px;
    }
    
    .calculator-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 25px;
    }
}
/* Hero Section with Background Image */
.hero {
    color: white;
    padding: 20px 0 28px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    /*background: linear-gradient(135deg, rgba(1, 33, 105, 0.9) 0%, rgba(0, 25, 77, 0.9) 100%);*/
	/*background: linear-gradient(135deg, rgb(253 0 51 / 57%) 0%, rgba(0, 25, 77, 0.9) 100%);*/
	    background: linear-gradient(135deg, rgb(253 0 51 / 20%) 0%, rgb(0 25 77 / 39%) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/usa-flag.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 2.1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    margin-right: 8px;
    color: #ffd700;
}

.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.key-points {
    margin-bottom: 30px;
}

.key-point {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.key-point i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.key-point span {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-section {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-subtext i {
    color: var(--secondary);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.9;
}