/* ===================================================
   VENTUROX INTERNATIONAL — Premium Public Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
    /* Refined Color Palette */
    --primary: #0F2B4C;
    --primary-light: #1C3B6C;
    --secondary: #3D9AB8;
    --accent: #E8B931;
    --light-bg: #FAFBFD;
    --cream: #F5F0E8;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --text-light: #B2BEC3;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(15, 43, 76, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 43, 76, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 43, 76, 0.12);
    --shadow-hover: 0 16px 40px rgba(15, 43, 76, 0.14);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'DM Sans', sans-serif;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

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

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

p {
    line-height: 1.8;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.public-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    background: var(--white);
    box-shadow: 0 1px 12px rgba(15, 43, 76, 0.07);
    transition: var(--transition);
}

.public-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(15, 43, 76, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo — bigger, transparent-friendly */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo img {
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
    transition: var(--transition);
}

.public-header.scrolled .brand-logo img {
    height: 50px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.public-header.scrolled .brand-text {
    color: var(--primary);
}

/* Nav Links */
.public-nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

.public-nav a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.public-header.scrolled .public-nav a {
    color: var(--text-main);
}

.public-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: var(--transition);
    border-radius: 2px;
}

.public-nav a:hover::after {
    width: 100%;
}

.public-nav a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        160deg,
        rgba(15, 43, 76, 0.88) 0%,
        rgba(28, 59, 108, 0.75) 40%,
        rgba(61, 154, 184, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 850px;
    padding: 0 30px;
}

.hero-content h1 {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.85;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #2C8DA6);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(61, 154, 184, 0.35);
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(61, 154, 184, 0.45);
    color: var(--white);
}

/* ===========================
   PAGE HEADERS (inner pages)
   =========================== */

.page-header {
    padding: 160px 20px 80px;
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61,154,184,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--white);
}

.page-header p {
    color: rgba(255,255,255,0.7) !important;
}

/* ===========================
   REUSABLE
   =========================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 40px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 14px auto 0;
    border-radius: 3px;
}

/* ===========================
   ABOUT US — Premium Layout
   =========================== */

.premium-about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.intro-image-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image-block img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.8s ease;
}

.intro-image-block:hover img {
    transform: scale(1.04);
}

.glass-ornament {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(61,154,184,0.3), rgba(255,255,255,0));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 2;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.glass-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.glass-card .rich-text-content {
    color: var(--text-muted);
    line-height: 1.8;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.primary-icon { background: rgba(15, 43, 76, 0.08); color: var(--primary); }
.secondary-icon { background: rgba(61, 154, 184, 0.1); color: var(--secondary); }
.highlight-icon { background: rgba(232, 185, 49, 0.12); color: var(--accent); }

.highlight-card::before {
    background: linear-gradient(90deg, var(--accent), #D4A828) !important;
    opacity: 1 !important;
}

/* ===========================
   PRODUCTS GRID — Minimalist
   =========================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-card.minimalist {
    background: transparent;
    box-shadow: none;
    border-radius: var(--radius-md);
}

.product-card.minimalist:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.product-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 3/4;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card.minimalist:hover .product-image-wrapper img {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 43, 76, 0.85) 0%,
        rgba(15, 43, 76, 0.2) 40%,
        transparent 100%
    );
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.product-card.minimalist:hover .product-overlay {
    opacity: 1;
}

.product-overlay .product-title {
    color: var(--white);
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    transform: translateY(16px);
    transition: transform 0.5s ease;
}

.product-card.minimalist:hover .product-title {
    transform: translateY(0);
}

.quick-view-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    transform: translateY(-16px);
    opacity: 0;
    font-size: 0.9rem;
}

.product-card.minimalist:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Legacy product styles (fallback) */
.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}
.product-info { padding: 25px; background: var(--white); }
.product-category {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* ===========================
   TESTIMONIAL SECTION
   =========================== */

.testimonials-section {
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61,154,184,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,185,49,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
}

.testimonial-card .quote-icon {
    font-size: 2.2rem;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 18px;
    display: block;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.author-info h4 {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info-panel {
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(61,154,184,0.15), transparent 70%);
    border-radius: 50%;
}

.contact-info-panel h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2rem;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    color: var(--accent);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.contact-form {
    padding: 60px 50px;
}

.form-group {
    margin-bottom: 22px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #E8ECF0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: #FAFBFD;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(61, 154, 184, 0.1);
    background: var(--white);
}

.contact-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-btn:hover {
    background: linear-gradient(135deg, var(--secondary), #2C8DA6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61,154,184,0.3);
}

/* ===========================
   FOOTER
   =========================== */

.public-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 24px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
}

/* ===========================
   RICH TEXT OVERRIDES
   =========================== */

.rich-text-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.rich-text-content p {
    margin-bottom: 12px;
}

/* ===========================
   NAV DROPDOWN
   =========================== */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0 !important;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 1000;
    display: flex;
    flex-direction: column !important;
    gap: 0 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 22px !important;
    color: var(--text-main) !important;
    font-weight: 500 !important;
    font-size: 0.88rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: var(--transition-fast) !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(61, 154, 184, 0.08);
    color: var(--secondary) !important;
    padding-left: 28px !important;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .public-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: var(--transition);
    }

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

    .public-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .premium-about-intro {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 60px 20px;
    }

    .page-header {
        padding: 130px 20px 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        backdrop-filter: none;
        background: transparent;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px !important;
    }
}
