/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    overflow-x: hidden;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f2 50%, #e6d7c1 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Properties for Theme Colors */
:root {
    --primary-beige: #fefefe;
    --secondary-beige: #f8f6f2;
    --accent-brown: #b8a99a;
    --dark-brown: #222;
    --light-brown: #e6d7c1;
    --warm-white: #ffffff;
    --gold-accent: #d4c4a8;
    --gradient-primary: linear-gradient(135deg, #fefefe 0%, #f8f6f2 50%, #e6d7c1 100%);
    --gradient-secondary: linear-gradient(135deg, #f8f6f2 0%, #e6d7c1 50%, #b8a99a 100%);
    --gradient-accent: linear-gradient(135deg, #d4c4a8 0%, #b8a99a 50%, #8b7d6b 100%);
    --text-primary: #222;
    --text-secondary: #222;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(184, 169, 154, 0.15);
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding-left: 32px;
}

.nav-logo {
    margin-left: 32px;
    margin-right: 32px;
}

.nav-logo h2 {
    color: var(--accent-brown);
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-brown);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-brown);
    margin: 3px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--gradient-secondary);
    color: var(--dark-brown);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: grain 20s linear infinite;
}

@keyframes grain {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 4rem;
    opacity: 0.8;
    animation: slideInRight 1s ease-out 0.6s both;
}

.hero-graphic i {
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
    color: var(--accent-brown);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.hero-graphic i:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-graphic i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes glow {
    0% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    border: 2px solid var(--accent-brown);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.4);
    border-color: var(--gold-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-brown);
    border: 2px solid var(--accent-brown);
}

.btn-secondary:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--accent-brown);
    border: 2px solid var(--accent-brown);
}

.btn-outline:hover {
    background: var(--gradient-accent);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(139, 115, 85, 0.4);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%238b7355" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-brown);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-brown);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(184, 169, 154, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(184, 169, 154, 0.25);
    border-color: var(--gold-accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(184, 169, 154, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(184, 169, 154, 0.4);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-brown);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-brown);
}

.service-card p {
    color: var(--dark-brown);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--dark-brown);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,5 50,10 T100,10" stroke="%238b7355" stroke-width="1" fill="none" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--warm-white);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(184, 169, 154, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(184, 169, 154, 0.25);
    border-color: var(--gold-accent);
}

.pricing-card.featured {
    border-color: var(--gold-accent);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--warm-white) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.08);
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-brown);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-brown);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-brown);
    text-shadow: 0 2px 4px rgba(139, 115, 85, 0.2);
}

.period {
    font-size: 1rem;
    color: var(--accent-brown);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-brown);
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 0.5rem;
}

.plan-features li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.plan-features i {
    color: var(--gold-accent);
    font-size: 1.1rem;
    animation: checkmark 0.5s ease-out;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%238b7355" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--warm-white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(184, 169, 154, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.2);
    border-color: var(--gold-accent);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-brown);
    width: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: var(--gold-accent);
    transform: scale(1.2);
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
    transition: color 0.3s ease;
}

.contact-item:hover h4 {
    color: var(--accent-brown);
}

.contact-item p {
    color: var(--dark-brown);
    transition: color 0.3s ease;
}

.contact-item:hover p {
    color: var(--dark-brown);
}

.contact-form {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.2);
    border-color: var(--gold-accent);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(139, 115, 85, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: var(--primary-beige);
    color: var(--dark-brown);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--accent-brown);
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--gradient-secondary);
    color: var(--dark-brown);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-brown);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: var(--accent-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-radius: 5px;
}

.footer-section ul li a:hover {
    color: var(--gold-accent);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.25rem 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 115, 85, 0.3);
    color: var(--accent-brown);
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 0;
        margin: 0;
    }
    .nav-container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .nav-logo {
        margin-left: 0;
        margin-right: 12px;
    }
    .nav-whatsapp-link {
        margin-right: 0;
        font-size: 1.4rem;
    }
    .navbar {
        min-height: 56px;
    }
    .pricing-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .pricing-card {
        min-width: 90vw;
        max-width: 98vw;
        margin: 0 auto;
        padding: 24px 10px;
        box-sizing: border-box;
    }
    .plan-actions {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    .team-carousel {
        min-width: 100vw;
        min-height: 420px;
        padding: 0 0 32px 0;
    }
    .team-slide {
        min-width: 90vw;
        max-width: 98vw;
        padding: 32px 8px;
    }
    .team-photo {
        width: 72px;
        height: 72px;
    }
    .section-title {
        font-size: 1.4rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .blog-preview-grid, .portfolio-grid, .services-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .blog-preview-card, .portfolio-card, .service-card {
        min-width: 90vw;
        max-width: 98vw;
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    .footer-newsletter {
        margin-top: 24px;
    }
    .footer-bottom {
        text-align: center;
    }
    .contact-content {
        flex-direction: column;
        gap: 24px;
    }
    .contact-info, .contact-form {
        width: 100%;
        min-width: unset;
        max-width: unset;
    }
    .contact-form {
        padding: 0;
    }
    .faq-list {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Additional Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Enhanced hover effects */
.service-card:hover .service-icon {
    animation: rotateIn 0.6s ease-out;
}

.pricing-card:hover .price .amount {
    color: #6366f1;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

h1, h2, h3, h4, h5, h6, .section-title, .section-subtitle, .plan-header h3, .plan-title, .plan-subtitle, .footer-section h3, .footer-section h4 {
    color: var(--dark-brown) !important;
    -webkit-text-fill-color: unset !important;
    background: none !important;
}

.nav-link {
    color: var(--dark-brown);
}

.nav-link:hover {
    color: var(--accent-brown);
}

.footer, .footer-bottom, .footer-section ul li, .footer-section ul li a {
    color: var(--dark-brown);
}

.service-card h3, .service-card p, .pricing-card, .plan-features li, .contact-item h4, .contact-item p, .contact-form, .chatbot-header h3, .chatbot-messages, .message.bot, .message.user {
    color: var(--dark-brown);
}

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 10010;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    color: #fff;
    background: #1ebe57;
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 80px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.testimonials {
    background: var(--warm-white);
    padding: 80px 0 60px;
}

.testimonials .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    background: var(--primary-beige);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(184, 169, 154, 0.12);
    padding: 2.5rem 2rem 2rem;
    min-width: 320px;
    max-width: 400px;
    transition: box-shadow 0.3s;
    text-align: center;
}

.testimonial-slide.active {
    display: flex;
}

.testimonial-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    border: 3px solid var(--gold-accent);
    box-shadow: 0 2px 8px rgba(184, 169, 154, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-name {
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.testimonial-role {
    color: var(--dark-brown);
    font-size: 0.95rem;
    opacity: 0.8;
}

.testimonial-arrow {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(184, 169, 154, 0.12);
    transition: background 0.2s, transform 0.2s;
    z-index: 2;
}

.testimonial-arrow:hover {
    background: var(--gold-accent);
    color: var(--dark-brown);
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .testimonials {
        padding: 50px 0 30px;
    }
    .testimonials-carousel {
        gap: 0.5rem;
    }
    .testimonial-slide {
        min-width: 220px;
        padding: 1.2rem 0.5rem 1rem;
    }
    .testimonial-photo {
        width: 48px;
        height: 48px;
    }
}

.portfolio {
    background: var(--primary-beige);
    padding: 80px 0 60px;
}
.portfolio .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.portfolio-card {
    background: var(--warm-white);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(184, 169, 154, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}
.portfolio-card:hover {
    box-shadow: 0 16px 48px rgba(184, 169, 154, 0.18);
    transform: translateY(-8px) scale(1.02);
}
.portfolio-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.portfolio-content {
    padding: 1.5rem 1.2rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.portfolio-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 0.5rem;
}
.portfolio-desc {
    color: var(--dark-brown);
    font-size: 1rem;
    margin-bottom: 1.1rem;
    flex: 1;
}
.portfolio-result {
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 16px;
    font-size: 1rem;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(184, 169, 154, 0.10);
}
@media (max-width: 600px) {
    .portfolio {
        padding: 50px 0 30px;
    }
    .portfolio-img {
        height: 120px;
    }
    .portfolio-content {
        padding: 1rem 0.5rem 0.7rem;
    }
}

.blog-preview {
    background: var(--warm-white);
    padding: 80px 0 60px;
}
.blog-preview .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.blog-preview-card {
    background: var(--primary-beige);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(184, 169, 154, 0.10);
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}
.blog-preview-card:hover {
    box-shadow: 0 16px 48px rgba(184, 169, 154, 0.16);
    transform: translateY(-6px) scale(1.02);
}
.blog-preview-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 0.6rem;
}
.blog-preview-summary {
    color: var(--dark-brown);
    font-size: 1rem;
    margin-bottom: 1.1rem;
    flex: 1;
}
.blog-preview-link {
    color: var(--gold-accent);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.blog-preview-link:hover {
    color: var(--accent-brown);
    text-decoration: underline;
}
.blog-preview-more {
    text-align: center;
    margin-top: 2.5rem;
}
@media (max-width: 600px) {
    .blog-preview {
        padding: 50px 0 30px;
    }
    .blog-preview-grid {
        gap: 0.7rem;
    }
    .blog-preview-card {
        padding: 1.2rem 0.7rem 1rem;
    }
}

.footer-newsletter {
    background: var(--primary-beige);
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(184, 169, 154, 0.08);
    padding: 2.2rem 2rem 1.5rem;
    margin: 2.5rem auto 1.5rem;
    max-width: 500px;
    text-align: center;
}
.footer-newsletter h4 {
    color: var(--accent-brown);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.footer-newsletter p {
    color: var(--dark-brown);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    max-width: 320px;
    padding: 0.8rem 1.1rem;
    border: 2px solid var(--accent-brown);
    border-radius: 25px;
    font-size: 1rem;
    background: var(--warm-white);
    color: var(--dark-brown);
    transition: border 0.2s, box-shadow 0.2s;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.13);
}
.newsletter-form button {
    margin-top: 0.5rem;
    min-width: 140px;
}
@media (max-width: 600px) {
    .footer-newsletter {
        padding: 1.2rem 0.5rem 1rem;
        margin: 1.2rem 0 1rem;
    }
    .newsletter-form input[type="text"],
    .newsletter-form input[type="email"] {
        max-width: 100%;
        font-size: 0.98rem;
    }
}

.faq {
    background: var(--primary-beige);
    padding: 80px 0 60px;
}
.faq .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.faq-item {
    background: var(--warm-white);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(184, 169, 154, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.open {
    box-shadow: 0 8px 32px rgba(184, 169, 154, 0.13);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--accent-brown);
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--primary-beige);
}
.faq-question:hover {
    background: var(--primary-beige);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--primary-beige);
    color: var(--dark-brown);
    font-size: 1rem;
    padding: 0 1.5rem;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.4s;
}
.faq-item.open .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 300px;
}
@media (max-width: 600px) {
    .faq {
        padding: 50px 0 30px;
    }
    .faq-list {
        gap: 0.5rem;
    }
    .faq-question {
        font-size: 1rem;
        padding: 1rem 0.7rem;
    }
    .faq-answer {
        padding: 0 0.7rem;
    }
    .faq-item.open .faq-answer {
        padding: 0.7rem 0.7rem 1rem;
    }
}

.social-proof {
    background: var(--warm-white);
    padding: 40px 0 30px;
    text-align: center;
}
.social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.client-logo {
    height: 48px;
    width: auto;
    filter: grayscale(1) brightness(0.7);
    opacity: 0.7;
    transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.client-logo:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.08);
}
.social-proof-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.award-badge {
    height: 48px;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(184, 169, 154, 0.10);
    background: #fff;
    padding: 0.3rem;
    transition: transform 0.2s;
}
.award-badge:hover {
    transform: scale(1.12) rotate(-3deg);
}
@media (max-width: 600px) {
    .social-proof-logos {
        gap: 1rem;
    }
    .client-logo, .award-badge {
        height: 32px;
    }
}

.nav-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 1.7rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: color 0.2s;
    text-decoration: none;
    position: static;
    margin-left: auto;
    margin-right: 16px;
}

.nav-whatsapp-link:hover,
.nav-whatsapp-link:focus {
    color: #1ebe57;
    background: none;
}

.nav-whatsapp-link .fab.fa-whatsapp {
    font-size: 1.7rem;
    line-height: 1;
}

.plan-comparison {
    background: var(--primary-beige);
    padding: 70px 0 60px;
}
.plan-comparison .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.comparison-table-wrapper {
    overflow-x: auto;
    max-width: 100vw;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--warm-white);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(184, 169, 154, 0.10);
    overflow: hidden;
    min-width: 700px;
}
.comparison-table th, .comparison-table td {
    padding: 1.1rem 1.2rem;
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid var(--primary-beige);
}
.comparison-table th {
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
}
.comparison-table td {
    color: var(--dark-brown);
}
.comparison-table td i.fas.fa-check {
    color: var(--gold-accent);
    font-size: 1.2rem;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
@media (max-width: 900px) {
    .comparison-table {
        min-width: 520px;
        font-size: 0.95rem;
    }
    .comparison-table th, .comparison-table td {
        padding: 0.7rem 0.5rem;
    }
}
@media (max-width: 600px) {
    .plan-comparison {
        padding: 40px 0 30px;
    }
    .comparison-table {
        min-width: 400px;
        font-size: 0.92rem;
    }
    .comparison-table th, .comparison-table td {
        padding: 0.5rem 0.3rem;
    }
}

.counters {
    background: var(--warm-white);
    padding: 60px 0 40px;
}
.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}
.counter-card {
    background: var(--primary-beige);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(184, 169, 154, 0.08);
    padding: 2.2rem 1.2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.counter-card:hover {
    box-shadow: 0 12px 32px rgba(184, 169, 154, 0.13);
    transform: translateY(-6px) scale(1.03);
}
.counter-icon {
    font-size: 2.2rem;
    color: var(--gold-accent);
    margin-bottom: 1.1rem;
}
.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.counter-label {
    color: var(--dark-brown);
    font-size: 1.05rem;
    opacity: 0.85;
}
@media (max-width: 600px) {
    .counters {
        padding: 30px 0 20px;
    }
    .counters-grid {
        gap: 1rem;
    }
    .counter-card {
        padding: 1.2rem 0.5rem 1rem;
    }
    .counter-icon {
        font-size: 1.3rem;
    }
    .counter-number {
        font-size: 1.4rem;
    }
    .counter-label {
        font-size: 0.95rem;
    }
}

.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 115, 85, 0.4);
}

.chatbot-toggle.active {
    background: var(--gradient-secondary);
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: var(--warm-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 115, 85, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid var(--gold-accent);
}

.chatbot-container.active {
    display: flex;
    animation: slideInUp 0.3s ease-out;
}

.chatbot-header {
    background: var(--gradient-accent);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px 18px 0 0;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    animation: fadeInUp 0.3s ease-out;
    white-space: pre-line;
}

.message.user {
    background: var(--gradient-accent);
    color: white;
    align-self: flex-end;
    border-radius: 15px 15px 5px 15px;
}

.message.bot {
    background: rgba(139, 115, 85, 0.1);
    color: var(--dark-brown);
    align-self: flex-start;
    border-radius: 15px 15px 15px 5px;
    border: 1px solid rgba(139, 115, 85, 0.2);
}

.message.bot strong {
    color: var(--accent-brown);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.message.bot ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.message.bot li {
    margin: 0.25rem 0;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid rgba(139, 115, 85, 0.1);
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(139, 115, 85, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    background: var(--primary-beige);
    color: var(--dark-brown);
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.chatbot-input button {
    background: var(--gradient-accent);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chatbot-input button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.chatbot-input button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    align-self: flex-start;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-brown);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced chatbot animations */
.chatbot-toggle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(139, 115, 85, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(139, 115, 85, 0.3);
    }
}

.chatbot-toggle.active {
    animation: none;
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        width: 300px;
        height: 400px;
        bottom: 70px;
        right: 10px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 40px);
        height: 350px;
        right: 10px;
        left: 10px;
    }
    
    .chatbot-messages {
        padding: 0.75rem;
    }
    
    .message {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }
}

.nav-login-dropdown {
    position: relative;
}
.nav-login-dropdown .login-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--warm-white);
    box-shadow: 0 8px 24px rgba(184, 169, 154, 0.13);
    border-radius: 12px;
    min-width: 160px;
    z-index: 1001;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}
.nav-login-dropdown:hover .login-dropdown-menu,
.nav-login-dropdown:focus-within .login-dropdown-menu {
    display: block;
}
.login-dropdown-menu li {
    list-style: none;
}
.login-dropdown-menu a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--dark-brown);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
}
.login-dropdown-menu a:hover {
    background: var(--gradient-accent);
    color: #fff;
}
@media (max-width: 900px) {
    .nav-login-dropdown .login-dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        margin-top: 0;
    }
    .login-dropdown-menu a {
        padding: 0.7rem 1rem;
    }
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
}
.login-box {
    background: var(--warm-white);
    padding: 2.5rem 2rem 2rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(184, 169, 154, 0.13);
    min-width: 320px;
    max-width: 95vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}
.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.login-form .form-group {
    margin-bottom: 0;
}
.back-home-link {
    color: var(--accent-brown);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: color 0.2s;
}
.back-home-link:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}
@media (max-width: 600px) {
    .login-box {
        padding: 1.2rem 0.5rem 1rem;
        min-width: 90vw;
    }
    .login-title {
        font-size: 1.2rem;
    }
}

/* --- Plan Pages Professional & Simple Styles --- */
.plan-hero {
    padding: 100px 0 40px;
    background: var(--gradient-secondary);
    color: var(--dark-brown);
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.plan-hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    z-index: 2;
}
.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(184, 169, 154, 0.10);
}
.plan-badge i {
    font-size: 1.1rem;
}
.plan-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.plan-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--dark-brown);
    opacity: 0.9;
}
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 1.2rem;
}
.plan-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}
.plan-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}
.plan-graphic {
    display: flex;
    gap: 1.5rem;
    font-size: 2.2rem;
    opacity: 0.8;
}
.plan-graphic i {
    color: var(--accent-brown);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature-card {
    background: var(--warm-white);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(184, 169, 154, 0.08);
    padding: 1.5rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
    box-shadow: 0 10px 32px rgba(184, 169, 154, 0.13);
    transform: translateY(-4px) scale(1.01);
}
.feature-icon {
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 0.7rem;
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-brown);
    margin-bottom: 0.4rem;
}
.feature-card p {
    color: var(--dark-brown);
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
    flex: 1;
}
.feature-details {
    color: var(--dark-brown);
    font-size: 0.95rem;
    margin: 0.3rem 0 0 1.1rem;
    padding: 0;
}
.feature-details li {
    margin-bottom: 0.2rem;
    list-style: disc;
}

/* Process Section */
.process-section {
    background: var(--primary-beige);
    padding: 50px 0 40px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.step {
    background: var(--warm-white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(184, 169, 154, 0.07);
    padding: 1.2rem 0.7rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.step:hover {
    box-shadow: 0 8px 24px rgba(184, 169, 154, 0.11);
    transform: translateY(-3px) scale(1.01);
}
.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
}
.step h3 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--accent-brown);
    margin-bottom: 0.3rem;
}
.step p {
    color: var(--dark-brown);
    font-size: 0.93rem;
    opacity: 0.9;
}

/* Responsive for Plan Pages */
@media (max-width: 900px) {
    .plan-hero {
        padding: 60px 0 20px;
    }
    .plan-title {
        font-size: 1.5rem;
    }
    .features-grid {
        gap: 0.7rem;
    }
    .process-section {
        padding: 25px 0 15px;
    }
}
@media (max-width: 600px) {
    .plan-hero {
        padding: 30px 0 10px;
        min-height: 30vh;
    }
    .plan-title {
        font-size: 1.1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    .feature-card {
        padding: 0.7rem 0.4rem 0.6rem;
    }
    .process-section {
        padding: 10px 0 5px;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    .step {
        padding: 0.7rem 0.4rem 0.6rem;
    }
}

/* --- Payment Modal & Form Styles for Plan Pages --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(34, 34, 34, 0.25);
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: var(--warm-white);
    margin: auto;
    border-radius: 18px;
    padding: 2.2rem 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(184, 169, 154, 0.13);
    max-width: 400px;
    width: 95vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.5rem;
    color: var(--accent-brown);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.close:hover {
    color: var(--gold-accent);
}
.payment-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 1rem;
    text-align: center;
}
.plan-summary ul {
    margin: 0 0 1.2rem 0;
    padding-left: 1.2rem;
    color: var(--dark-brown);
    font-size: 0.98rem;
}
.plan-summary li {
    margin-bottom: 0.3rem;
    list-style: disc;
}
.payment-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}
.payment-form .form-group {
    margin-bottom: 0;
}
.payment-form input,
.payment-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(139, 115, 85, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--primary-beige);
    color: var(--dark-brown);
    transition: border 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.payment-form input:focus,
.payment-form select:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.13);
}
.payment-form button[type="submit"] {
    margin-top: 0.5rem;
    min-width: 140px;
    align-self: center;
}
@media (max-width: 600px) {
    .modal-content {
        padding: 1.2rem 0.5rem 1rem;
        max-width: 98vw;
    }
    .payment-form input,
    .payment-form select {
        font-size: 0.98rem;
    }
} 

/* --- CTA Section & Button Styles for Plan Pages --- */
.cta-section {
    background: var(--gradient-primary);
    padding: 50px 0 40px;
    text-align: center;
}
.cta-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-content p {
    color: var(--dark-brown);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-buttons .btn {
    min-width: 170px;
    font-size: 1rem;
    padding: 0.9rem 1.7rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.13);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-buttons .btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    border: 2px solid var(--accent-brown);
}
.cta-buttons .btn-primary:hover {
    background: var(--gradient-secondary);
    color: #fff;
    border-color: var(--gold-accent);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.18);
}
.cta-buttons .btn-outline {
    background: transparent;
    color: var(--accent-brown);
    border: 2px solid var(--accent-brown);
}
.cta-buttons .btn-outline:hover {
    background: var(--gradient-accent);
    color: #fff;
    border-color: var(--gold-accent);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.18);
}
@media (max-width: 600px) {
    .cta-section {
        padding: 20px 0 10px;
    }
    .cta-content h2 {
        font-size: 1.2rem;
    }
    .cta-content p {
        font-size: 0.98rem;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }
    .cta-buttons .btn {
        min-width: 100%;
        font-size: 0.98rem;
        padding: 0.7rem 1.1rem;
    }
}

/* Hide WhatsApp button in navbar on mobile, show in menu */
.nav-whatsapp-link {
    display: inline-block;
}

.nav-whatsapp-mobile {
    display: none;
}

@media (max-width: 768px) {
    .nav-whatsapp-link {
        display: none !important;
    }
    .nav-whatsapp-mobile {
        display: block !important;
    }
}

.team-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 40px;
    min-height: 520px;
    min-width: 100%;
}

.team-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    color: #bfa181;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s;
    z-index: 2;
}
.team-arrow:hover,
.team-arrow:focus {
    color: #8d6a2a;
}

.team-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 64px 48px;
    min-width: 480px;
    max-width: 600px;
    margin: 0 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
}

.team-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.team-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #bfa181;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-brown, #3e2723);
    margin-bottom: 4px;
}

.team-role {
    font-size: 1rem;
    color: #bfa181;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 1rem;
    color: #444;
}

.pricing-card .plan-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
}

.pricing-card .btn {
    font-size: 0.95rem;
    padding: 8px 18px;
    border-radius: 6px;
    min-width: unset;
}