/* ===================================
   RENA-SER Business Solutions Website
   Modern Corporate Design with Animations
   =================================== */

/* === CSS VARIABLES === */
:root {
    /* Brand Colors */
    --gold-primary: #C5A76E;
    --gold-dark: #B8944E;
    --red-accent: #D32F2F;
    --charcoal: #2C2C2C;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gold: #F5EED6;
    --gray-light: #E8E8E8;
    --gray-medium: #666666;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(197, 167, 110, 0.3);
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* === UTILITY CLASSES === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.highlight {
    color: var(--gold-primary);
    position: relative;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-accent), #E53935);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #B71C1C, var(--red-accent));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold-dark), #9A7A3E);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.btn-call-now:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-call-now i {
    font-size: 1.2rem;
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

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

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--white);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--red-accent), #E53935);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #B71C1C, var(--red-accent));
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--white) 50%, var(--light-gold) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--red-accent), #E53935);
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.hero-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

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

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--charcoal);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-medium);
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-hero {
    font-size: 1.1rem;
    padding: 18px 40px;
    margin-bottom: 60px;
    animation: pulse 2s ease-in-out infinite;
}

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

.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-accent);
}

.trust-number::after {
    content: '+';
}

.trust-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-top: 8px;
}

.trust-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
    color: var(--gray-medium);
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    font-weight: 400;
}

/* === SERVICES SECTION === */
.services {
    padding: 100px 0;
    background: var(--white);
}

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

.service-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--gray-light);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-gold), var(--gold-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.service-list {
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-medium);
}

.service-list i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.service-link {
    color: var(--gold-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 12px;
    color: var(--gold-dark);
}

/* === MISSION SECTION === */
.mission {
    padding: 100px 0;
    background: var(--charcoal);
    color: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text .section-title {
    color: var(--white);
    text-align: left;
}

.mission-statement {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.8;
    color: var(--light-gold);
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.mission-description strong {
    color: var(--gold-primary);
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(197, 167, 110, 0.2);
    transition: var(--transition-smooth);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--gold-primary);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gold-primary);
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* === PHILANTHROPY SECTION === */
.philanthropy {
    padding: 100px 0;
    background: var(--light-gold);
}

.philanthropy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.philanthropy-info h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--charcoal);
}

.philanthropy-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.philanthropy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.philanthropy-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philanthropy-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.philanthropy-text h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.philanthropy-text ul {
    list-style: none;
}

.philanthropy-text li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: var(--gray-medium);
}

.philanthropy-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

.calculator-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

.calculator-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.calculator-form .form-group {
    margin-bottom: 24px;
}

.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
}

.input-wrapper {
    position: relative;
}

.input-prefix {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    font-weight: 600;
}

.calculator-form input {
    width: 100%;
    padding: 14px 16px 14px 36px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.calculator-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(197, 167, 110, 0.1);
}

.calculator-result {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, var(--light-gold), var(--white));
    border-radius: 15px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

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

.result-label {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-bottom: 12px;
}

.result-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-accent);
    margin-bottom: 12px;
}

.result-note {
    font-size: 0.85rem;
    color: var(--gray-medium);
    font-style: italic;
    margin: 0;
}

/* === GET STARTED FORM SECTION === */
.get-started {
    padding: 100px 0;
    background: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.step-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--gold-primary);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--gray-light);
    position: relative;
    top: -20px;
}

/* Form Steps */
.form-step {
    display: none;
    animation: slideIn 0.5s ease;
}

.form-step.active {
    display: block;
}

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

.form-step h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--charcoal);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(197, 167, 110, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Toggle Buttons */
.toggle-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.toggle-btn {
    flex: 1;
    min-width: 150px;
    padding: 14px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    background: var(--white);
    color: var(--charcoal);
    font-weight: 500;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.toggle-btn:hover {
    border-color: var(--gold-primary);
    background: var(--light-gold);
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

/* Client Type Cards */
.client-type-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.client-card {
    padding: 30px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.client-card:hover {
    border-color: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.client-card.active {
    background: linear-gradient(135deg, var(--light-gold), var(--white));
    border-color: var(--gold-primary);
    border-width: 3px;
    box-shadow: var(--shadow-gold);
}

.client-card .card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--gold-primary);
}

.client-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.client-card p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
}

/* Services Checkboxes */
.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.checkbox-card {
    position: relative;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-content {
    padding: 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    background: var(--white);
}

.checkbox-content i {
    font-size: 1.5rem;
    color: var(--gray-medium);
    transition: var(--transition-smooth);
}

.checkbox-card:hover .checkbox-content {
    border-color: var(--gold-primary);
    background: var(--light-gold);
}

.checkbox-card input:checked + .checkbox-content {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-color: var(--gold-primary);
    color: var(--white);
}

.checkbox-card input:checked + .checkbox-content i {
    color: var(--white);
}

.step-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.form-buttons .btn {
    flex: 1;
}

.btn-next,
.btn-submit {
    width: 100%;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 60px 40px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.form-success h3 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 16px;
}

.success-note {
    font-size: 0.95rem;
    color: var(--gold-primary);
    font-weight: 600;
}

/* === CALENDAR SECTION === */
.calendar-section {
    padding: 100px 0;
    background: var(--off-white);
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    min-height: 600px;
}

#ghl-calendar-placeholder {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-placeholder-content {
    text-align: center;
    color: var(--gray-medium);
}

.calendar-placeholder-content i {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 24px;
}

.calendar-placeholder-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.placeholder-info {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-gold);
    border-radius: 10px;
}

.placeholder-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    display: none;
    padding: 20px 60px;
    background: var(--light-gold);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-rating {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: #FFB300;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.author-info p {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin: 0;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--gold-primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--gold-primary);
    width: 40px;
    border-radius: 6px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.badge i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.badge-text span {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* === FOOTER === */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info i {
    color: var(--gold-primary);
    margin-top: 4px;
}

/* Newsletter */
.footer-newsletter {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.footer-newsletter h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition-smooth);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.15);
}

/* Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gold-primary);
    transform: translateY(-5px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

/* === STICKY MOBILE CTA === */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: none;
    gap: 12px;
    z-index: 999;
}

.mobile-cta-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    background: var(--white);
}

.mobile-cta-btn.primary {
    background: linear-gradient(135deg, var(--red-accent), #E53935);
    color: var(--white);
    border-color: var(--red-accent);
}

.mobile-cta-btn i {
    margin-right: 8px;
}

/* === RESPONSIVE DESIGN === */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .mission-content,
    .philanthropy-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 30px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .client-type-cards {
        grid-template-columns: 1fr;
    }
    
    .services-checkboxes {
        grid-template-columns: 1fr;
    }
    
    .toggle-buttons {
        flex-direction: column;
    }
    
    .toggle-btn {
        min-width: 100%;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .badge {
        padding: 16px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .mobile-cta {
        display: flex;
    }
    
    .progress-bar {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
/* ========================================
   UPDATED STYLES FOR RENA-SER WEBSITE
   ======================================== */

/* === HERO SECTION - SPLIT LAYOUT === */
.hero-container-split {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: center;
    min-height: 85vh;
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-content-left {
    padding-right: 40px;
}

.hero-image-right {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === SERVICES SECTION - SPLIT LAYOUT WITH 2X2 GRID === */
.services-split-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: start;
}

.services-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.services-form-container {
    position: sticky;
    top: 100px;
}

.form-wrapper {
    background: linear-gradient(135deg, var(--light-gold), var(--white));
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.form-subtitle {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

/* === PHILANTHROPY SECTION - 2X2 GRID === */
.philanthropy-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.philanthropy-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.philanthropy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-primary);
}

.philanthropy-card .philanthropy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.philanthropy-card .philanthropy-icon i {
    font-size: 2rem;
    color: var(--white);
}

.philanthropy-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.philanthropy-card ul {
    list-style: none;
    padding: 0;
}

.philanthropy-card ul li {
    padding: 8px 0;
    color: var(--gray-medium);
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.philanthropy-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* === CALCULATOR CARD (4TH CARD IN GRID) === */
.philanthropy-calculator-card {
    background: linear-gradient(135deg, var(--light-gold), var(--white));
}

.calculator-form-compact {
    margin-top: 20px;
}

.form-group-compact {
    margin-bottom: 15px;
}

.form-group-compact label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.input-wrapper-compact {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix-compact {
    position: absolute;
    left: 15px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 1;
}

.input-wrapper-compact input {
    width: 100%;
    padding: 12px 12px 12px 35px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.input-wrapper-compact input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.btn-calculator {
    width: 100%;
    margin-top: 10px;
    padding: 12px 24px;
    font-size: 0.9rem;
}

.calculator-result-compact {
    margin-top: 20px;
    padding: 20px;
    background: rgba(197, 167, 110, 0.1);
    border-radius: 10px;
    text-align: center;
}

.result-label-compact {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin-bottom: 8px;
}

.result-amount-compact {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* === CALENDAR SECTION - SPLIT LAYOUT === */
.calendar-split-layout {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 40px;
    align-items: start;
}

.calendar-left {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.calendar-right {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.calendar-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.calendar-cta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.95), rgba(44, 44, 44, 0.7));
    padding: 40px 30px;
    color: var(--white);
}

.calendar-cta-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.calendar-cta-overlay p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.calendar-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 500;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 1024px) {
    .hero-container-split {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
        padding-top: 30px;
        padding-bottom: 40px;
    }
    
    .hero-image-right {
        height: 400px;
    }
    
    .services-split-layout {
        grid-template-columns: 1fr;
    }
    
    .services-form-container {
        position: static;
    }
    
    .philanthropy-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .calendar-split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .hero-content-left {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .btn-call-now {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .calendar-image {
        height: 400px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px 30px;
    }
}

/* === NAVBAR LOGO (IF NEEDED) === */
.navbar-logo {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

/* === EXTRA SMALL MOBILE DEVICES === */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-call-now {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .calendar-image {
        height: 300px;
    }
    
    .testimonial-card {
        padding: 15px 20px;
    }
    
    .hero-image-right {
        height: 300px;
    }
}
