:root {
    --primary-color: #002D5B;
    --secondary-color: #00509d;
    --accent-color: #D4AF37;
    --text-dark: #333333;
    --text-light: #f8f9fa;
    --white: #ffffff;
    --bg-light: #f4f6f9;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Utilities */
.text-primary-custom {
    color: var(--primary-color);
}

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

.bg-primary-custom {
    background-color: var(--primary-color);
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta:hover {
    background-color: #b5952f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

/* Header */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('../img/hero-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 45, 91, 0.85) 0%, rgba(0, 45, 91, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero .price-tag {
    font-size: 1.5rem;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-left: 5px solid var(--accent-color);
    display: inline-block;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

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

.benefit-card {
    padding: 30px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.benefit-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.price-display {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.price-display span {
    font-size: 1.5rem;
    vertical-align: super;
    color: #777;
}

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

.portfolio-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

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

.portfolio-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-card .card-body {
    padding: 1.5rem;
}

.portfolio-card .card-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.portfolio-card .card-text {
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Section */
.mobile-section {
    padding: 80px 0;
    overflow: hidden;
}

.mobile-mockup-wrapper {
    position: relative;
    z-index: 1;
}

.mobile-mockup-wrapper img {
    max-width: 100%;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
    border-radius: 30px;
}

.mobile-mockup-wrapper:hover img {
    transform: rotate(0deg) scale(1.02);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0;
}

footer a {
    color: var(--white);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        background-position: 70% center;
        /* Adjust for mobile if needed */
    }
}