:root {
    --primary: #008895;
    --primary-light: #00a8b8;
    --secondary: #abc98c;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --bg-main: #f0f4f8; 
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 20px 40px -15px rgba(0, 136, 149, 0.2);
    --radius-md: 20px;
    --radius-lg: 32px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background blob decorations */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: float 20s infinite ease-in-out;
}

body::before {
    width: 600px;
    height: 600px;
    background: rgba(171, 201, 140, 0.3);
    top: -100px;
    left: -200px;
}

body::after {
    width: 500px;
    height: 500px;
    background: rgba(0, 136, 149, 0.3);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: var(--shadow-strong);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 45px -15px rgba(0, 136, 149, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    border-radius: 100px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 40px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-bottom: 80px;
}

.bento-item {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hero-text {
    grid-column: span 3;
    grid-row: span 2;
    align-items: flex-start;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 30px;
}

.brand-showcase {
    grid-column: span 1;
    grid-row: span 2;
    align-items: center;
    text-align: center;
    border-radius: var(--radius-lg);
}

.huge-text {
    font-size: 3.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: 900;
    opacity: 0.9;
}

.social-box {
    grid-column: span 2;
    grid-row: span 1;
}

.social-box h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
}

.fb { background: #1877F2; }
.tw { background: #1DA1F2; }
.yt { background: #FF0000; }
.ig { background: #E4405F; }

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.mission-box {
    grid-column: span 2;
    grid-row: span 1;
}

.icon-large {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Brands Section */
.section-brands {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.brand-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

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

.brand-img-placeholder {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

.brand-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.brand-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 80px;
}

.contact-info {
    padding: 50px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 136, 149, 0.1);
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-list h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-list p {
    color: var(--text-muted);
}

.contact-map {
    padding: 10px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: calc(var(--radius-lg) - 10px);
    border: none;
}

/* Chat Section */
.chat-section {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.chat-container {
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    padding: 20px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-body {
    height: 400px;
    padding: 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255,255,255,0.3);
}

.message {
    max-width: 80%;
    padding: 15px 20px;
    border-radius: 20px;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.bot-message {
    align-self: flex-start;
    background: white;
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.user-message {
    align-self: flex-end;
    background: var(--gradient);
    color: white;
    border-bottom-right-radius: 5px;
    box-shadow: var(--shadow-strong);
}

.chat-input-area {
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    border-top: 1px solid var(--glass-border);
}

.chat-input-area input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s;
}

.chat-input-area input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,136,149,0.2);
}

.chat-input-area button {
    width: 55px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

footer {
    text-align: center;
    padding: 30px;
    color: var(--text-muted);
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    .hero-text {
        grid-column: span 2;
    }
    .brand-showcase {
        display: none; 
    }
    .social-box, .mission-box {
        grid-column: span 1;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .social-box, .mission-box {
        grid-column: span 1;
    }
    .nav-links {
        display: none;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
}
