/* style.css - Clean, Modern Corporate Theme for Phoenix Finance */
:root {
    --primary: #0b2240;      /* Royal Dark Navy */
    --primary-light: #183359;
    --accent: #c5a059;       /* Rich Champagne Gold */
    --accent-dark: #b38d47;
    --text-dark: #22252a;
    --text-light: #eceff4;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(11, 34, 64, 0.12);
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

.nav-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    padding: 5px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--accent);
}

.nav-item:hover::after {
    width: 100%;
}

.btn-cta {
    background-color: var(--accent);
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(197, 160, 89, 0.2);
}

.btn-cta:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.4);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(11, 34, 64, 0.9), rgba(11, 34, 64, 0.85)), url('../images/capture-d-cran-2021-01-25-164956_orig.jpg') no-repeat center center/cover;
    color: var(--bg-white);
    padding: 120px 0 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(236, 239, 244, 0.9);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-locations-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
    flex-wrap: wrap;
    max-width: 800px;
}

.hero-loc-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-loc-card:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.hero-loc-card span {
    font-size: 20px;
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.btn-secondary {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Info Grid Section */
.info-section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent);
}

.card-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 25px;
}

.card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.card p {
    color: #555;
    font-size: 15px;
}

/* Split Section */
.split-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.split-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.split-col {
    flex: 1;
}

.split-image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
}

.split-col h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.split-col p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.list-checked {
    list-style: none;
    margin-bottom: 30px;
}

.list-checked li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}

.list-checked li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 60px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: rgba(236, 239, 244, 0.8);
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 50px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 120px;
    color: rgba(197, 160, 89, 0.15);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #444;
    margin-bottom: 25px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

/* Contact & Forms */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    font-size: 20px;
    color: var(--accent);
}

.contact-item-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item-text p {
    color: rgba(236, 239, 244, 0.8);
    font-size: 14px;
}

.contact-form-container {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.15);
}

.btn-submit {
    background-color: var(--primary);
    color: var(--bg-white);
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 60px 0 20px 0;
    border-top: 5px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: rgba(236, 239, 244, 0.8);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(236, 239, 244, 0.8);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(236, 239, 244, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(236, 239, 244, 0.6);
}

/* Float WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive Rules */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Can be enhanced with JS */
    }
    .nav-menu .nav-item {
        color: var(--text-light) !important;
    }
    .menu-toggle {
        display: block;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
    .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .split-wrapper {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
