/* Global Styles */
:root {
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;
    --blue-50: #eff6ff;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-50: #fffbeb;
    --white: #ffffff;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-50: #f9fafb;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-50);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--amber-600);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--amber-700);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--blue-800);
    border: 2px solid var(--blue-800);
}

.btn-outline:hover {
    background-color: var(--blue-800);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Text colors */
.text-amber {
    color: var(--amber-600);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-blue {
    color: var(--blue-800);
}

.logo-amber {
    color: var(--amber-700);
}

.nav-links {
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--amber-600);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--amber-600);
}

/* Navigation icons */
.nav-links i {
    margin-right: 5px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--blue-800);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--amber-600);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(to bottom right, var(--blue-50), var(--amber-50));
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--blue-900);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray-700);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-images {
    flex: 1;
    position: relative;
    height: 400px;
}

.image-box {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    transition: all 0.5s ease;
}

.image-box-1 {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    background-color: var(--blue-50);
}

.image-box-2 {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    background-color: var(--amber-50);
}

.image-box:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder span {
    font-size: 6rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--blue-900);
    margin-bottom: 15px;
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-700);
    font-size: 1.1rem;
}

.benefits-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0 20px;
}

.benefits-container h3 {
    font-size: 1.5rem;
    color: var(--blue-900);
    text-align: center;
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.benefit-card {
    background-color: var(--blue-50);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-info {
    flex: 1;
}

.benefit-info p {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--blue-900);
}

.benefit-info small {
    display: block;
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

.boosts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.boost-card {
    background-color: var(--amber-50);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.boost-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.boost-card p {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--blue-900);
}

.boost-card small {
    display: block;
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefits-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--blue-50);
    border-radius: 8px;
    border-left: 4px solid var(--amber-600);
}

.benefits-note p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background-color: var(--blue-900);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--blue-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 10px;
}

.footer-info .owner {
    color: var(--amber-50);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amber-50);
}

.footer-contact span {
    font-weight: 600;
}

.copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .container {
        max-width: 720px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-images {
        height: 350px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .container {
        max-width: 540px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-images {
        width: 100%;
        height: 300px;
    }
    
    .boosts-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .image-placeholder span {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .image-placeholder span {
        font-size: 3rem;
    }
    
    .hero-images {
        height: 250px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .image-placeholder span {
        font-size: 2.5rem;
    }
    
    .hero-images {
        height: 200px;
    }
}

/* Print Styles */
@media print {
    header, footer, .cta, .hero-buttons {
        display: none;
    }
    
    body {
        background-color: var(--white);
        color: #000;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    
    .hero {
        padding: 20px 0;
        background: none;
    }
    
    .benefits {
        padding: 20px 0;
    }
    
    .section-header h2 {
        color: #000;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--amber-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--amber-700);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }
} 