@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #fcfbf9; /* Soft warm ivory / pristine white */
    --bg-secondary: #f6f4ee; /* Warm sand / soft beige */
    --bg-card: #ffffff; /* Pure white card */
    --bg-input: #ffffff;
    --text-primary: #292524; /* Deep bronze charcoal */
    --text-secondary: #57534e; /* Warm stone gray */
    --text-muted: #a8a29e;
    --primary: #f3b004; /* bright brand yellow-gold */
    --primary-rgb: 243, 176, 4;
    --primary-hover: #ffc83b;
    --primary-gradient: linear-gradient(135deg, #ffc83b 0%, #f3b004 50%, #b38000 100%);
    --accent-glow: radial-gradient(circle, rgba(243, 176, 4, 0.08) 0%, transparent 65%);
    --accent-glow-secondary: radial-gradient(circle, rgba(255, 200, 59, 0.05) 0%, transparent 65%);
    --border-color: rgba(243, 176, 4, 0.15); /* brand gold borders */
    --border-hover: rgba(243, 176, 4, 0.45);
    --success: #2c9b44;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
}

/* Ambient Glowing Background Blobs */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(130px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

.glow-1 {
    top: -100px;
    right: -100px;
    background: var(--accent-glow);
}

.glow-2 {
    bottom: 25%;
    left: -200px;
    background: var(--accent-glow-secondary);
    width: 700px;
    height: 700px;
}

.glow-3 {
    bottom: -150px;
    right: -150px;
    background: var(--accent-glow);
}

.container {
    width: 100%;
    max-width: 1440px; /* Centered content width for clean alignment and readability */
    margin: 0 auto;
    padding: 0 3rem; /* Elegant side padding on smaller screens */
    position: relative;
}

/* Panoramic Editorial Nav Bar (Unboxed & Aligned) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
    background: rgba(252, 251, 249, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(146, 111, 24, 0.02);
}

header.scrolled {
    background: rgba(252, 251, 249, 0.96);
    box-shadow: 0 10px 50px rgba(146, 111, 24, 0.05);
}

.nav-wrapper {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

header.scrolled .nav-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.40rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-region {
    color: var(--primary);
}

.logo i {
    font-size: 1.4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

/* Premium Typography & Gradients */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(243, 176, 4, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffc83b 0%, #f3b004 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(243, 176, 4, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 176, 4, 0.1);
}

/* Hero Section (Asymmetric Editorial Style with Integrated Slick Form) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 170px;
    padding-bottom: 90px;
    background-image: linear-gradient(to bottom, rgba(252, 251, 249, 0.72) 0%, rgba(252, 251, 249, 0.88) 60%, var(--bg-primary) 100%), url('panama_skyline_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.3rem;
    background: rgba(243, 176, 4, 0.08);
    border: 1px solid rgba(243, 176, 4, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.hero h1 em {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
}

.hero p.lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 4.5rem;
}

/* Dynamic Overlapping Images */
.hero-visual-frame {
    position: relative;
    width: 100%;
}

.hero-image-box {
    width: 85%;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 35px 80px rgba(146, 111, 24, 0.08);
    aspect-ratio: 4/3;
    z-index: 2;
    position: relative;
    background: #ffffff;
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Secondary overlapping image */
.hero-image-sub {
    width: 50%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px rgba(146, 111, 24, 0.12);
    aspect-ratio: 1/1;
    position: absolute;
    bottom: -60px;
    right: 0;
    z-index: 3;
    background: #ffffff;
}

.hero-image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slick UI Console Form (Single Page Form) */
.slick-form-card {
    background: rgba(252, 251, 249, 0.72); /* Warm sand glassmorphism */
    border: 1px solid rgba(243, 176, 4, 0.22);
    border-radius: 36px;
    padding: 3.5rem 3rem;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 30px 70px rgba(146, 111, 24, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.slick-form-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 36px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(243, 176, 4, 0.15), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.slick-form-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
}

.slick-form-card p.form-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.slick-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.slick-form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-secondary);
    margin-left: 0.2rem;
    display: block;
}

.slick-form-control {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background-color: #ffffff; /* Crisp solid white inputs */
    border: 1px solid rgba(243, 176, 4, 0.18);
    border-radius: 14px; /* Refined curves */
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.slick-form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(243, 176, 4, 0.08), 0 8px 25px rgba(146, 111, 24, 0.03);
    background-color: #ffffff;
}

select.slick-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23605a52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.1rem;
    padding-right: 2.8rem;
}

textarea.slick-form-control {
    resize: vertical;
    min-height: 105px;
    line-height: 1.6;
}

.slick-form-card .btn-submit {
    margin-top: 1.2rem;
    width: 100%;
}

/* Stats Section (Fine Line Separation) */
.stats-bar-section {
    padding: 4.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background-color: #fcfbf9;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stats-bar-item {
    position: relative;
}

.stats-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border-color);
}

.stats-bar-item h3 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-bar-item p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Section Header Base */
section {
    padding: 10rem 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 6rem;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 3.5rem 2.8rem;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(146, 111, 24, 0.02);
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(243, 176, 4, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 25px 50px rgba(146, 111, 24, 0.08);
}

.benefit-icon-box {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(243, 176, 4, 0.06);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 2.2rem;
    border: 1px solid rgba(243, 176, 4, 0.15);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Services Grid (Editorial asymmetric spacing) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(146, 111, 24, 0.02);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(243, 176, 4, 0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.service-image-header {
    height: 200px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.service-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image-header img {
    transform: scale(1.06);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 30px 60px rgba(146, 111, 24, 0.08);
}

.service-card-body {
    padding: 3.5rem 2.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body i.s-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    display: inline-block;
}

.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-link:hover i {
    transform: translateX(5px);
}

.service-card-link i {
    transition: var(--transition);
}

/* Accordion FAQs Section */
.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(146, 111, 24, 0.02);
}

.faq-item:hover {
    border-color: rgba(243, 176, 4, 0.25);
}

.faq-header {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-icon {
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active {
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(146, 111, 24, 0.06);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-body {
    max-height: 1000px;
}

.faq-content {
    padding: 0 2.5rem 2.2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
}

/* Testimonials Carousel (Luxury card) */
.testimonials-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 1.2rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 36px;
    padding: 4.5rem 4rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(146, 111, 24, 0.02);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 25px;
    left: 45px;
    font-size: 9rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: rgba(243, 176, 4, 0.05);
    line-height: 1;
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.85;
    margin-bottom: 2.8rem;
    font-weight: 400;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 20px rgba(243, 176, 4, 0.15);
}

.testimonial-user-info {
    text-align: left;
}

.testimonial-user-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-user-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
    margin-top: 0.1rem;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.carousel-control:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 30px rgba(243, 176, 4, 0.15);
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* Footer Styling */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 7rem 0 3rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none; /* remove underlines */
}

/* Default brand colors for social icons */
.social-link.social-facebook {
    color: #1877f2;
}

.social-link.social-instagram {
    color: #e1306c;
}

.social-link.social-linkedin {
    color: #0077b5;
}

.social-link.social-youtube {
    color: #ff0000;
}

.social-link.social-whatsapp {
    color: #25d366;
}

/* Official brand color hovers */
.social-link:hover {
    color: #ffffff;
    transform: translateY(-4px) rotate(8deg);
    text-decoration: none; /* remove underlines */
}

.social-link.social-facebook:hover {
    background: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.social-link.social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
}

.social-link.social-linkedin:hover {
    background: #0077b5;
    color: #ffffff;
    border-color: #0077b5;
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.3);
}

.social-link.social-youtube:hover {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.social-link.social-whatsapp:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Floating WhatsApp Bubble Widget */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-bubble:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background-color: #20ba5a;
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-bubble {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}

.footer-links h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 0.98rem;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

/* Success Screen */
.success-screen {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 5.5rem;
    color: var(--success);
    margin-bottom: 2rem;
    animation: popScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popScale {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.success-screen h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.success-screen p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.8rem;
    line-height: 1.7;
}

.success-ref {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: rgba(243, 176, 4, 0.04);
    border: 1px solid rgba(243, 176, 4, 0.2);
    border-radius: 14px;
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
}

/* Responsive Grid and Spacing Overrides */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    
    .hero {
        padding-top: 150px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual-frame {
        max-width: 550px;
        margin: 0 auto 3rem;
    }

    .features-grid, .services-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .carousel-control-prev {
        left: -30px;
    }
    .carousel-control-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    header {
        top: 0;
        padding: 0;
    }
    
    .nav-wrapper {
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        padding: 0 1.5rem;
        height: 70px;
        background: rgba(252, 251, 249, 0.95);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-primary);
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2.5rem;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }

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

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: var(--text-primary);
        transition: var(--transition);
    }

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

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

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

    .hero h1 {
        font-size: 2.8rem;
    }

    .features-grid, .services-grid, .benefits-grid, .footer-grid, .stats-bar-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-item:not(:last-child)::after {
        display: none;
    }

    .stats-bar-item {
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .stats-bar-item:last-child {
        border-bottom: none;
    }

    .grid-2, .slick-form-row-2 {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .slick-form-card {
        padding: 2.5rem 1.5rem;
    }
    
    .carousel-control {
        display: none;
    }
}
