@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Sora:wght@400;600;700&display=swap');

:root {
    --dor-primary: #be185d;
    --dor-secondary: #9d174d;
    --dor-accent: #14b8a6;
    --dor-bg-light: #fdf2f8;
    --dor-text-dark: #500724;
    --dor-text-muted: #f9a8d4;
    --dor-white: #ffffff;
    --dor-black: #000000;
    --dor-grey-light: #e0e0e0;
    --dor-grey-medium: #888888;
    --dor-border-radius: 8px;
    --dor-transition-speed: 0.3s ease;
}

/* Base Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--dor-text-dark);
    background-color: var(--dor-bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--dor-accent);
    color: var(--dor-white);
}

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

a:hover {
    color: var(--dor-secondary);
}

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

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    color: var(--dor-secondary);
    line-height: 1.2;
    margin-bottom: 0.8em;
    font-weight: 700;
}

h1 {
    font-size: 3.2rem;
    letter-spacing: -0.05em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.04em;
}

h3 {
    font-size: 2rem;
    letter-spacing: -0.03em;
}

h4 {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
}

h5 {
    font-size: 1.3rem;
    font-weight: 600;
}

h6 {
    font-size: 1.1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1em;
}

/* Utility Classes */
.vw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.vw-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.vw-section-padding {
    padding: 5rem 0;
}

.vw-bg-primary {
    background-color: var(--dor-primary);
    color: var(--dor-white);
}

.vw-bg-secondary {
    background-color: var(--dor-secondary);
    color: var(--dor-white);
}

.vw-bg-accent {
    background-color: var(--dor-accent);
    color: var(--dor-text-dark);
}

.vw-text-primary {
    color: var(--dor-primary);
}

.vw-text-accent {
    color: var(--dor-accent);
}

/* Buttons */
.vw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--dor-border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--dor-transition-speed);
    font-size: 1rem;
    border: 2px solid transparent;
}

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

.vw-btn-primary:hover {
    background-color: var(--dor-secondary);
    border-color: var(--dor-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.vw-btn-secondary {
    background-color: var(--dor-secondary);
    color: var(--dor-white);
    border-color: var(--dor-secondary);
}

.vw-btn-secondary:hover {
    background-color: var(--dor-primary);
    border-color: var(--dor-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.vw-btn-outline:hover {
    background-color: var(--dor-primary);
    color: var(--dor-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header & Navigation */
.vw-header {
    background-color: var(--dor-white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.vw-navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vw-logo a {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dor-primary);
}

.vw-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.vw-nav-links a {
    color: var(--dor-text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.vw-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--dor-accent);
    transition: width var(--dor-transition-speed);
}

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

.vw-hamburger {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--dor-text-dark);
}

.vw-mobile-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--dor-white);
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
}

.vw-mobile-nav.active {
    max-height: 300px; /* Adjust as needed */
}

.vw-mobile-nav ul {
    list-style: none;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vw-mobile-nav a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--dor-text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--dor-grey-light);
}

.vw-mobile-nav a:hover {
    background-color: var(--dor-bg-light);
    color: var(--dor-primary);
}


/* Hero Section */
.vw-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dor-white);
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 2rem 0;
}

.vw-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)); /* Dark overlay */
}

.vw-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.vw-hero-content h1 {
    color: var(--dor-white);
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.vw-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section Spacing & Backgrounds */
.vw-section {
    padding: 6rem 0;
}

.vw-section:nth-of-type(even) {
    background-color: var(--dor-bg-light);
}

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

.vw-section-header h2 {
    color: var(--dor-secondary);
    margin-bottom: 0.5rem;
}

.vw-section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dor-text-dark);
}

/* Card Components */
.vw-card {
    background-color: var(--dor-white);
    border-radius: var(--dor-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform var(--dor-transition-speed), box-shadow var(--dor-transition-speed);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.vw-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vw-card-icon {
    font-size: 3rem;
    color: var(--dor-accent);
    margin-bottom: 1rem;
}

.vw-card h3 {
    color: var(--dor-primary);
    margin-bottom: 0.8rem;
}

.vw-card p {
    font-size: 0.95rem;
    color: var(--dor-text-dark);
}

.vw-image-card {
    background-color: var(--dor-white);
    border-radius: var(--dor-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform var(--dor-transition-speed), box-shadow var(--dor-transition-speed);
}

.vw-image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.vw-image-card-content {
    padding: 1.5rem;
}

.vw-image-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--dor-secondary);
}

.vw-image-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dor-text-dark);
}

.vw-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Form Styling */
.vw-form-group {
    margin-bottom: 1.5rem;
}

.vw-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dor-text-dark);
}

.vw-form-group input[type="text"],
.vw-form-group input[type="email"],
.vw-form-group input[type="tel"],
.vw-form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--dor-grey-light);
    border-radius: var(--dor-border-radius);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 1rem;
    color: var(--dor-text-dark);
    background-color: var(--dor-white);
    transition: border-color var(--dor-transition-speed), box-shadow var(--dor-transition-speed);
}

.vw-form-group input[type="text"]:focus,
.vw-form-group input[type="email"]:focus,
.vw-form-group input[type="tel"]:focus,
.vw-form-group textarea:focus {
    outline: none;
    border-color: var(--dor-primary);
    box-shadow: 0 0 0 3px rgba(var(--dor-primary-rgb), 0.2);
}

.vw-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.vw-form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: var(--dor-border-radius);
    display: none;
}

.vw-form-message.vw-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vw-form-message.vw-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Trust Badges */
.vw-trust-item {
    display: inline-flex;
    align-items: center;
    background-color: var(--dor-white);
    padding: 1rem 1.5rem;
    border-radius: var(--dor-border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    gap: 0.8rem;
    font-weight: 500;
    color: var(--dor-text-dark);
}

.vw-trust-item i {
    font-size: 1.8rem;
    color: var(--dor-accent);
}

/* Footer */
.vw-footer {
    background-color: var(--dor-secondary);
    color: var(--dor-white);
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
}

.vw-footer h3 {
    color: var(--dor-accent);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.vw-footer ul {
    list-style: none;
    padding: 0;
}

.vw-footer ul li {
    margin-bottom: 0.8rem;
}

.vw-footer ul li a {
    color: var(--dor-white);
    opacity: 0.8;
    transition: opacity var(--dor-transition-speed);
}

.vw-footer ul li a:hover {
    opacity: 1;
    color: var(--dor-accent);
}

.vw-footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.vw-social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: var(--dor-white);
    transition: background-color var(--dor-transition-speed);
}

.vw-social-links a:hover {
    background-color: var(--dor-accent);
    color: var(--dor-text-dark);
}

/* Animations */
.vw-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.vw-animate.vw-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion */
.vw-faq-item {
    background-color: var(--dor-white);
    margin-bottom: 1rem;
    border-radius: var(--dor-border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.vw-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dor-secondary);
    cursor: pointer;
    background-color: var(--dor-bg-light);
    transition: background-color var(--dor-transition-speed);
}

.vw-faq-q:hover {
    background-color: #f0e6eb;
}

.vw-faq-q i {
    font-size: 1.2rem;
    transition: transform var(--dor-transition-speed);
}

.vw-faq-item.active .vw-faq-q i {
    transform: rotate(180deg);
}

.vw-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding var(--dor-transition-speed);
    padding: 0 1.5rem;
}

.vw-faq-item.active .vw-faq-a {
    max-height: 500px; /* Sufficient height for most answers */
    padding: 1rem 1.5rem 1.5rem;
}

.vw-faq-a p {
    margin-bottom: 0;
    color: var(--dor-text-dark);
}

/* Contact Page Specific */
.vw-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.vw-contact-info h3 {
    color: var(--dor-primary);
    margin-bottom: 1.5rem;
}

.vw-contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dor-text-dark);
}

.vw-contact-details p i {
    font-size: 1.5rem;
    color: var(--dor-accent);
    margin-right: 1rem;
}

.vw-map-container {
    border-radius: var(--dor-border-radius);
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--dor-grey-light);
}

.vw-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vw-hero-content h1 {
        font-size: 3.5rem;
    }
    .vw-hero-content p {
        font-size: 1.2rem;
    }
    .vw-nav-links {
        gap: 1.5rem;
    }
    .vw-section-padding {
        padding: 4rem 0;
    }
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .vw-navbar {
        flex-direction: row; /* Keep logo and hamburger on one line */
        justify-content: space-between;
        align-items: center;
    }
    .vw-nav-links {
        display: none;
    }
    .vw-hamburger {
        display: block;
    }
    .vw-hero-content h1 {
        font-size: 2.5rem;
    }
    .vw-hero-content p {
        font-size: 1rem;
    }
    .vw-grid {
        grid-template-columns: 1fr;
    }
    .vw-section-padding {
        padding: 3rem 0;
    }
    .vw-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .vw-footer-grid > div {
        margin-bottom: 2rem;
    }
    .vw-footer-grid > div:last-child {
        margin-bottom: 0;
    }
    .vw-social-links {
        justify-content: center;
    }
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .vw-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vw-container {
        padding: 0 1rem;
    }
    .vw-hero-content h1 {
        font-size: 2rem;
    }
    .vw-hero-content p {
        font-size: 0.9rem;
    }
    .vw-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    .vw-section-padding {
        padding: 2rem 0;
    }
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.3rem;
    }
    .vw-form-group label {
        font-size: 0.9rem;
    }
    .vw-form-group input, .vw-form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Specific Styling for Editorial/Magazine look */
.vw-article-preview {
    display: flex;
    flex-direction: column;
    background-color: var(--dor-white);
    border-radius: var(--dor-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform var(--dor-transition-speed), box-shadow var(--dor-transition-speed);
}
.vw-article-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.vw-article-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.vw-article-content {
    padding: 1.5rem;
}
.vw-article-content h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: var(--dor-secondary);
}
.vw-article-content p {
    font-size: 0.95rem;
    color: var(--dor-text-dark);
    margin-bottom: 1rem;
}
.vw-article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--dor-grey-medium);
}
.vw-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.vw-article-meta i {
    color: var(--dor-accent);
}

/* Featured Article */
.vw-featured-article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background-color: var(--dor-white);
    border-radius: var(--dor-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}
.vw-featured-article img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.vw-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vw-featured-content h2 {
    font-size: 2.8rem;
    color: var(--dor-primary);
    margin-bottom: 1rem;
}
.vw-featured-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
    .vw-featured-article {
        grid-template-columns: 1.5fr 1fr;
    }
    .vw-featured-article img {
        height: auto;
    }
}

/* Categories section */
.vw-category-card {
    background-color: var(--dor-primary);
    color: var(--dor-white);
    border-radius: var(--dor-border-radius);
    padding: 2rem;
    text-align: center;
    transition: background-color var(--dor-transition-speed), transform var(--dor-transition-speed);
}
.vw-category-card:hover {
    background-color: var(--dor-secondary);
    transform: translateY(-5px);
}
.vw-category-card h3 {
    color: var(--dor-white);
    margin-bottom: 0.5rem;
}
.vw-category-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--dor-white);
}

/* Testimonial Section */
.vw-testimonial-card {
    background-color: var(--dor-white);
    border-radius: var(--dor-border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    font-style: italic;
    color: var(--dor-text-dark);
    position: relative;
}
.vw-testimonial-card::before {
    content: '\201C'; /* Left double quote */
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--dor-text-muted);
    line-height: 1;
    opacity: 0.5;
}
.vw-testimonial-card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}
.vw-testimonial-card .vw-author {
    font-weight: 600;
    color: var(--dor-primary);
    font-style: normal;
    display: block;
    margin-top: 1rem;
}
.vw-testimonial-card .vw-author span {
    font-weight: 400;
    color: var(--dor-grey-medium);
    font-size: 0.9rem;
}

/* CTA Banner */
.vw-cta-banner {
    background-color: var(--dor-primary);
    color: var(--dor-white);
    text-align: center;
    padding: 4rem 0;
    margin-top: 4rem;
}
.vw-cta-banner h2 {
    color: var(--dor-white);
    margin-bottom: 1rem;
}
.vw-cta-banner p {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

.vw-rating-stars {
    color: #ffc107; /* Gold stars */
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.vw-rating-stars i {
    margin-right: 2px;
}


/* === Quality polish === */
button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

@keyframes vwFadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.vw-animate { opacity: 0; }
.vw-animate.vw-visible { animation: vwFadeInUp 0.6s ease forwards; }