/* 
 * Madhuri Bakshi - POSH Consultant Website
 * Pixel-Perfect Static CSS
 * DO NOT modify spacing or layout
 */

/* ===== CSS RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== ROOT VARIABLES ===== */
:root {
    /* Colors - Premium Women-led Palette */
    --primary: #D4959D;
    --secondary: #6B2D5C;
    --accent: #E8B4B8;
    --background: #FAF8F5;
    --foreground: #2E2E2E;
    --muted: #F5F0ED;
    --muted-foreground: #6B6B6B;
    --border: rgba(107, 45, 92, 0.1);
    --white: #ffffff;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Spacing - DO NOT CHANGE */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Container */
    --container-max-width: 1400px;
    --container-padding: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-white {
    background-color: var(--white);
}

.section-gray {
    background-color: var(--muted);
}

.section-purple {
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(107, 45, 92, 0.9) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.125rem;
    max-width: 50rem;
    margin: 0 auto;
    color: var(--muted-foreground);
    line-height: 1.75;
}

.subsection-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--foreground);
    opacity: 0.8;
}

.caption-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    height: 3.5rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover {
    background-color: rgba(107, 45, 92, 0.9);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: var(--white);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-lg);
}

.btn-outline:hover {
    background-color: rgba(107, 45, 92, 0.1);
}

.btn-white {
    background-color: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.95);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

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

.btn-instagram {
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.btn-instagram:hover {
    background: linear-gradient(90deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
}

.btn-nav {
    padding: 0.625rem 1.5rem;
}

.btn-whatsapp {
    margin-top: 1.5rem;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    background-color: rgba(212, 149, 157, 0.1);
    color: var(--primary);
    border: 1px solid rgba(212, 149, 157, 0.2);
    margin-bottom: 1rem;
}

.badge-hero {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(107, 45, 92, 0.3);
    color: var(--secondary);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.badge-white {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.badge-outline {
    background-color: transparent;
    border: 1px solid rgba(107, 45, 92, 0.3);
    color: var(--foreground);
    padding: 0.75rem 1rem;
    margin: 0 0.375rem 0.75rem 0;
    transition: var(--transition);
}

.badge-outline:hover {
    background-color: rgba(107, 45, 92, 0.05);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

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

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.brand-name-white {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

.nav-toggle {
    display: none;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    background-color: var(--foreground);
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -0.5rem;
}

.hamburger::after {
    top: 0.5rem;
}

.mobile-menu {
    display: none;
    background-color: var(--white);
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 75%;
    border-bottom-left-radius: 100px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 45, 92, 0.1) 0%, rgba(107, 45, 92, 0.3) 50%, transparent 100%);
}

.hero-image-accent {
    position: absolute;
    bottom: 5rem;
    right: 8%;
    width: 22%;
    aspect-ratio: 4/3;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

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

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.hero-decoration-1 {
    top: 15%;
    right: 20%;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.hero-decoration-2 {
    bottom: 30%;
    right: 45%;
    width: 12rem;
    height: 12rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 3rem 0;
}

.hero-text {
    max-width: 42rem;
}

.floating_icon {
    position: fixed;
    bottom: 60px;
    right: 25px;
    width: 70px;
    height: 70px;
    opacity: 1;
    /* background: rgba(255, 255, 255, 0.9); */
    border: 1px solid #4CAF50;
    border-radius: 50%;
    z-index: 9999;
    padding: 8px;
    /* box-shadow: 0px 0px 10px #4CAF50; */
}

.book_a_free {
    width: 105px;
    height: 42px;
    border-radius: 6px;
    padding: 10px;
    opacity: 1;
    background: #FFFFFF;
    position: fixed;
    right: 7px;
    bottom: 10px;
    box-shadow: 0px 0px 4px 0px #00000040;
    display: flex;
    align-items: center;
    z-index: 111;
}

.hero-headline {
    width: 80%;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.divider-line {
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
}

.subtitle-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.hero-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--foreground);
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
    display: block;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: var(--container-padding);
    z-index: 20;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, var(--foreground), transparent);
    opacity: 0.4;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-content {
    max-width: 100%;
}

.roles-section {
    margin-top: 2rem;
}

.role-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.role-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(107, 45, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
    font-weight: bold;
}

.role-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.role-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card-large {
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.stat-card-large:hover {
    transform: translateY(-0.5rem) scale(1.05);
}

.gradient-1 {
    background: linear-gradient(135deg, rgba(212, 149, 157, 0.05), rgba(232, 180, 184, 0.1));
}

.gradient-2 {
    background: linear-gradient(135deg, rgba(107, 45, 92, 0.05), rgba(212, 149, 157, 0.1));
}

.gradient-3 {
    background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), rgba(107, 45, 92, 0.05));
}

.gradient-4 {
    background: linear-gradient(135deg, rgba(212, 149, 157, 0.1), rgba(232, 180, 184, 0.05));
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-card-large .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card-large .stat-label {
    font-size: 0.875rem;
}

.corporate-section {
    background: linear-gradient(135deg, rgba(245, 240, 237, 0.5), var(--white));
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(107, 45, 92, 0.1);
}

.gradient-primary {
    background: linear-gradient(135deg, rgba(107, 45, 92, 0.05), rgba(212, 149, 157, 0.1));
}

.gradient-secondary {
    background: linear-gradient(135deg, rgba(212, 149, 157, 0.05), rgba(232, 180, 184, 0.1));
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    margin-top: 1rem;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(212, 149, 157, 0.05), rgba(232, 180, 184, 0.1));
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
}

.workshop-card .service-image img {
    object-position: top;
}

.service-card:hover .wrapper-content-top {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: #6b2d5c;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.service-card:hover .wrapper-content-top p{
position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 30px;
    color: #fff;
    font-size: 24px;
}


.wrapper-content-top {
    display: none;
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

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

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

.service-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(107, 45, 92, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-container {
    position: relative;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(107, 45, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-company {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(107, 45, 92, 0.1);
    color: var(--secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover:not(:disabled) {
    background-color: var(--secondary);
    color: var(--white);
}

.testimonial-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(107, 45, 92, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    width: 2rem;
    border-radius: var(--radius-full);
    background-color: var(--secondary);
}

/* ===== SECTORS SECTION ===== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.sector-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.sector-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: block;
}

.sector-name {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== SOCIAL PROOF ===== */
.social-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
}

.social-icon {
    font-size: 1.5rem;
}

.social-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.social-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.instagram-item {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: var(--transition);
}

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

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    transition: var(--transition);
}

.instagram-item:hover .instagram-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

/* ===== CTA SECTION ===== */
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
}

.cta-section::before {
    top: 0;
    left: 0;
    background-color: var(--white);
}

.cta-section::after {
    bottom: 0;
    right: 0;
    background-color: var(--primary);
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-lg);
    background-color: rgba(107, 45, 92, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.contact-secondary {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(245, 240, 237, 0.5), var(--white));
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(107, 45, 92, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 8rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--foreground);
    color: var(--white);
    padding: 4rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-image-main,
    .hero-image-accent {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .info-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    .hero-content {
    padding: 5rem 0 3rem;
}
.hero-image-main {
    width: 100%;
    height: 67%;
     border-bottom-left-radius: 0; 
     display: block;
}
    .hero-title,.subtitle-text {
        font-size: 2rem;
        color: #fff;
    }
    .hero-title .text-secondary {color: #fff}
    .hero-description {color: #fff}
    .hero-description .text-secondary {color: #fff;}
    .hero-subtitle .divider-line {background: #fff}
    .hero-text .badge.badge-hero {display: none}
    .hero-overlay {background: linear-gradient(135deg, rgba(107, 45, 92, 0.1) 0%, rgba(107, 45, 92, 0.6) 50%, transparent 100%)}
    .hero-headline {width:100%}
    .hero-subtitle {display: none}
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .hero-image-main {
        height: 52%;
    }
    .company-tags {
    flex-wrap: nowrap;
    overflow-y: auto;
}
    .stats-grid {display: none}

    .badge {
    height: 49px;
    white-space: nowrap;
}

    .hero {min-height: 85vh;}

    .hero-description {display: none;}

    button.btn.btn-outline.btn-lg {
    display: none;
}



    .corporate-section {
    padding: 10px;
}

    .hero-content {
        padding: 5rem 0 0rem;
    }

    .hero-image-main {
        height: 60%;
    }
    
    .hero-title {
        font-size: 2rem;
    }



    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .feature-grid,
    .services-grid,
    .testimonials-track,
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .instagram-item {
        width: calc(50% - 15px);
        margin: 0 auto;
    }
    .instagram-grid {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
}

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