/* =========================================
   VARIABLES & GLOBAL RESET
   ========================================= */
   :root {
    --primary-color: #D81B60; /* Magenta/Vibrant Pink */
    --primary-hover: #E91E63;
    --secondary-color: #4A148C; /* Dark Purple/Wine */
    --secondary-hover: #6A1B9A;
    --text-color: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #212529;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header {
    margin-bottom: 50px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-white, .text-white * {
    color: white !important;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.mt-auto { margin-top: auto; }
.mt-4 { margin-top: 1rem; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 27, 96, 0.4);
}

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

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

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: baseline;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background-image: linear-gradient(rgba(74, 20, 140, 0.85), rgba(74, 20, 140, 0.95)), url('../img/hero-photo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.hero-bg-shape {
    display: none; /* Hide shape since we have a background image now */
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

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

.badge-wrapper {
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(74, 20, 140, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-stats-glass {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    margin-top: 20px;
}

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

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-light);
    font-weight: 500;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: inherit;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-light), #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.2;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-color);
}

.floating-badge i {
    font-size: 1.5rem;
    color: #FFD700; /* Gold */
}

.about-text .section-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-text > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mv-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mv-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mv-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

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

.highlight-card {
    background: var(--secondary-color);
    color: white;
}

.highlight-card .service-icon i {
    color: white;
}

.highlight-card h3 {
    color: white;
}

.highlight-card::before {
    background: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(216, 27, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.highlight-card .service-icon {
    background: rgba(255, 255, 255, 0.1);
}

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

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

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

.service-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-list i {
    color: var(--primary-color);
    margin-top: 4px;
}

.highlight-card .service-list i {
    color: var(--primary-color);
}

/* =========================================
   PROJECTS SECTION
   ========================================= */
.projects {
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1.5" fill="%23d81b60" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>') center center;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-pill {
    background: white;
    padding: 15px 30px;
    border-radius: 40px;
    box-shadow: var(--box-shadow);
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
}

.project-pill i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.project-pill:hover, .project-pill.active {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(216, 27, 96, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* =========================================
   ESG SECTION
   ========================================= */
.esg-header {
    text-align: center;
    margin-bottom: 60px;
}

.esg-header .section-title {
    color: white;
}

.esg-header .section-title::after {
    background: var(--primary-color);
}

.esg-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.esg-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.esg-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
}

.esg-letter {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(216, 27, 96, 0.3);
}

.esg-card h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.esg-card p {
    color: rgba(255,255,255,0.8);
}

/* =========================================
   DOWNLOADS SECTION
   ========================================= */
.downloads {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.download-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(74, 20, 140, 0.2);
    color: white;
}

.download-text h2 {
    color: white;
    margin-bottom: 10px;
    font-size: 2rem;
}

.download-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--bg-light);
    padding: 100px 0 0;
    border-top: 1px solid #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-desc {
    margin: 20px 0;
    color: var(--text-light);
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 15px;
}

.footer-links ul a {
    color: var(--text-light);
}

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

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.footer-contact ul li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    background-color: var(--secondary-color);
    padding: 20px 0;
    color: rgba(255,255,255,0.7);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    margin-left: 20px;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* =========================================
   FLOATING UI ELEMENTS
   ========================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-stats-glass { gap: 20px; }
    
    .about-container { gap: 40px; }
    
    .services-grid, .esg-cards { gap: 20px; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 2rem; }
    
    /* Navbar */
    .mobile-menu-btn { display: block; }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }
    .nav-links.active { left: 0; }
    
    /* Hero */
    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .hero-stats-glass { grid-template-columns: 1fr; }
    
    /* Grids */
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image { margin-top: 30px; display: none; } /* Hide illustration on very small screens to save space, or just let it stack */
    .about-container { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .esg-cards { grid-template-columns: 1fr; }
    
    /* Downloads */
    .download-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    
    /* Cookie & Footer */
    .cookie-content { flex-direction: column; text-align: center; }
    .footer-bottom .container { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .floating-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -30px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

/* =========================================
   ACCORDION
   ========================================= */
.accordion-container { max-width: 900px; margin: 40px auto 0; }
.accordion-item { background: white; border-radius: 12px; margin-bottom: 20px; box-shadow: var(--box-shadow); overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.accordion-header { width: 100%; background: none; border: none; padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; transition: background 0.3s; }
.accordion-header:hover { background: rgba(0,0,0,0.02); }
.acc-title .acc-area { font-size: 0.85rem; font-weight: 700; color: var(--primary-color); letter-spacing: 1px; display: block; margin-bottom: 5px; }
.acc-title h3 { font-size: 1.4rem; color: var(--secondary-color); margin: 0; }
.acc-icon { font-size: 2rem; color: var(--primary-color); transition: transform 0.3s; font-weight: 300; }
.accordion-item.active .acc-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-content { padding: 0 30px 30px; }
.bullet-list { list-style: none; padding: 0; }
.bullet-list li { position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--text-color); font-size: 1.05rem; }
.bullet-list li::before { content: "•"; color: var(--primary-color); font-weight: bold; font-size: 1.2rem; position: absolute; left: 0; top: -2px; }
