/* Reset and Modern Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #d4af37;
    --secondary-gold: #f4e09c;
    --dark-gold: #b8941f;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
}

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

/* Enhanced Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    cursor: pointer;
}

.nav-brand h1:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #d4af37;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    padding-top: 80px;
    gap: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(244, 224, 156, 0.05));
    z-index: -1;
}

.hero-content {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.highlight {
    color: #d4af37;
    background: linear-gradient(45deg, #d4af37, #f4e09c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.5s both;
}

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

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #d4af37, #f4e09c);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #333;
    border: 2px solid #d4af37;
}

.cta-btn.secondary:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Enhanced Hero Image */
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.price-badge {
    background: linear-gradient(45deg, #d4af37, #f4e09c);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

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

.price-badge .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.price-badge .label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Parallax Section */
.parallax {
    height: 800px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-content {
    width: 100%;
    height: 120%;
    position: absolute;
    top: -10%;
    left: 0;
}

.parallax-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    filter: brightness(0.8);
    transform: translateY(0) scale(1.0);
    transition: transform 0.1s ease-out;
}

/* Expertise Section */
.expertise {
    padding: 100px 0;
    background: #f8f9fa;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expertise-text {
    animation: fadeInUp 0.8s ease-out;
}

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

.expertise-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.expertise-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.expertise-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.expertise-image img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: transparent;
}

.expertise-image img:hover {
    transform: scale(1.05);
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.portfolio-section {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item.large {
    grid-row: 1 / 3;
    height: 420px;
}

.portfolio-item.small {
    height: 350px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-label {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-label span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.details-section {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 10;
}

.welcome-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #d4af37;
    margin-bottom: 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.details-text {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 8px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

/* Featured Home Section */
.featured-home {
    padding: 50px 0;
}

.featured-home img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: zoomIn 1s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    text-align: center;
}

.footer-left,
.footer-right {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 1rem 50px;
        text-align: center;
        gap: 2rem;
    }

    .hero-image img {
        height: 400px;
    }

    .parallax {
        height: 250px;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .portfolio-section {
        margin-bottom: 60px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .portfolio-item.large {
        grid-row: auto;
        height: 300px;
    }

    .portfolio-item.small {
        height: 250px;
    }

    .details-section {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .welcome-text,
    .details-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
    }

    .welcome-text {
        font-size: 0.9rem;
    }

    .details-text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .pastor-bio {
        padding: 60px 0;
    }

    .bio-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .bio-image {
        order: 1;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0;
    }
    
    .bio-image::before {
        display: none;
    }
    
    .bio-image img {
        height: 500px;
        width: 100%;
        max-width: 380px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .bio-text {
        order: 2;
        text-align: center;
        padding: 0 25px;
        width: 100%;
    }

    .bio-signature {
        margin-top: 2.5rem;
        text-align: center;
    }

    .bio-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.3rem;
        text-align: left;
    }
    
    .bio-signature h4 {
        font-size: 1.3rem;
    }
    
    .ministry-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cta-btn {
        min-width: 200px;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .image-overlay {
        position: static;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
    
    .price-badge {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .expertise-text h3 {
        font-size: 2rem;
    }

    .details-text h2 {
        font-size: 2.5rem;
    }

    .nav {
        padding: 1rem;
    }
    
    .bio-image {
        padding: 0 15px;
    }
    
    .bio-image img {
        max-width: 320px;
        height: 400px;
    }
    
    .bio-text {
        padding: 0 20px;
    }
    
    .bio-text p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .bio-signature {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .bio-signature h4 {
        font-size: 1.2rem;
    }
    
    .ministry-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Pastor Biography Section */
.pastor-bio {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.bio-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.bio-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
    position: relative;
}

.bio-image {
    position: relative;
    animation: fadeInLeft 1s ease-out;
}

.bio-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 40px;
    bottom: 40px;
    background: linear-gradient(45deg, #d4af37 0%, rgba(244, 224, 156, 0.3) 100%);
    border-radius: 30px;
    z-index: -1;
}

.bio-image img {
    width: 100%;
    max-width: 550px;
    height: 650px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.18);
}

.bio-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.bio-text {
    text-align: left;
    animation: fadeInUp 0.8s ease-out;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.bio-signature {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.bio-signature p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.bio-signature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin: 0;
}

.bio-button {
    margin-top: 2rem;
}

.ministry-btn {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4e09c);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ministry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: white;
}

/* Book Price Section */
.book-price {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.book-price h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.order-btn {
    background: linear-gradient(45deg, #d4af37, #f4e09c);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #d4af37;
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.book-details h4 {
    color: #333;
    margin-bottom: 10px;
}

.book-details p {
    margin: 5px 0;
    color: #666;
}

#totalPrice {
    font-weight: bold;
    color: #d4af37;
    font-size: 1.1rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, #d4af37, #f4e09c);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.payment-details {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.payment-details h4 {
    color: #333;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.bank-info {
    display: grid;
    gap: 8px;
}

.bank-info p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.bank-info strong {
    color: #333;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.submit-btn.whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    font-size: 1rem;
}

.submit-btn.whatsapp:hover {
    background: #128C7E;
}

.payment-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

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

.contact-header {
    margin-bottom: 3rem;
}

.contact-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #d4af37, #f4e09c);
    border-radius: 50%;
    color: white;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-info {
    text-align: left;
}

.contact-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #b8941f;
}

/* Bio Section */
.bio {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bio-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.bio-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.bio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.bio-image:hover img {
    transform: scale(1.05);
}

.bio-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #c9a961;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.bio-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.bio-text h3 .highlight {
    color: #c9a961;
}

.bio-description p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-item i {
    font-size: 24px;
    color: #c9a961;
    min-width: 30px;
}

.highlight-item span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

.bio-quote {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-left: 5px solid #c9a961;
    border-radius: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: white;
    line-height: 1.6;
    position: relative;
}

.bio-quote::before {
    content: '"';
    font-size: 60px;
    color: #c9a961;
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

/* Responsive Bio Section */
@media (max-width: 992px) {
    .bio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bio-text h3 {
        font-size: 36px;
    }

    .bio-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bio {
        padding: 60px 0;
    }

    .bio-text h3 {
        font-size: 28px;
    }

    .bio-quote {
        font-size: 16px;
        padding: 20px;
    }

    .bio-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 24px;
        font-size: 12px;
    }
}

