@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Cabin:wght@400;600&display=swap');

:root {
    --v32-primary: #be185d;
    --v32-secondary: #9d174d;
    --v32-accent: #14b8a6;
    --v32-background-light: #fdf2f8;
    --v32-text-dark: #500724;
    --v32-text-muted: #f9a8d4;
    --v32-white: #ffffff;
    --v32-black: #000000;
    --v32-shadow-light: rgba(0, 0, 0, 0.08);
    --v32-shadow-medium: rgba(0, 0, 0, 0.15);
    --v32-border-radius: 8px;
    --v32-transition-speed: 0.3s ease;
}

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

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

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

::selection {
    background-color: var(--v32-primary);
    color: var(--v32-white);
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-top: 1.5em;
}

h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
}

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

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1em;
}

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

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

ul {
    list-style: none;
}

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

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

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

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

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

.ct-spacing-top {
    padding-top: 6rem;
}

.ct-spacing-bottom {
    padding-bottom: 6rem;
}

.ct-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

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

.ct-btn-primary:hover {
    background-color: var(--v32-secondary);
    border-color: var(--v32-secondary);
    transform: translateY(-2px);
    box-shadow: var(--v32-shadow-medium);
}

.ct-btn-secondary {
    background-color: var(--v32-accent);
    color: var(--v32-white);
    border-color: var(--v32-accent);
}

.ct-btn-secondary:hover {
    background-color: var(--v32-primary);
    border-color: var(--v32-primary);
    transform: translateY(-2px);
    box-shadow: var(--v32-shadow-medium);
}

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

.ct-btn-outline:hover {
    background-color: var(--v32-primary);
    color: var(--v32-white);
    transform: translateY(-2px);
    box-shadow: var(--v32-shadow-medium);
}

/* Header & Navigation */
.ct-header {
    background-color: var(--v32-white);
    padding: 1rem 0;
    box-shadow: var(--v32-shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.ct-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--v32-primary);
}

.ct-logo span {
    color: var(--v32-secondary);
}

.ct-nav-list {
    display: flex;
    gap: 2rem;
}

.ct-nav-item a {
    color: var(--v32-text-dark);
    font-weight: 600;
    position: relative;
}

.ct-nav-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--v32-primary);
    transition: width var(--v32-transition-speed);
}

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

.ct-hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
}

.ct-hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--v32-text-dark);
    border-radius: 3px;
    transition: all var(--v32-transition-speed);
}

.ct-hamburger-menu.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.ct-hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.ct-hamburger-menu.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.ct-mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--v32-primary-rgb, 190, 24, 93), 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--v32-transition-speed);
}

.ct-mobile-nav-overlay.active {
    transform: translateX(0);
}

.ct-mobile-nav-overlay .ct-nav-list {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
}

.ct-mobile-nav-overlay .ct-nav-item a {
    color: var(--v32-white);
    font-size: 2rem;
}

.ct-mobile-nav-overlay .ct-nav-item a::after {
    background-color: var(--v32-accent);
}

/* Hero Section */
.ct-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--v32-white);
    overflow: hidden;
    background-color: var(--v32-secondary);
}

.ct-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.ct-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.85) 0%, rgba(157, 23, 77, 0.85) 100%);
    z-index: 2;
}

.ct-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 2rem;
}

.ct-hero h1 {
    color: var(--v32-white);
    margin-bottom: 1rem;
}

.ct-hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Sections */
.ct-section {
    padding: 6rem 0;
    position: relative;
}

.ct-section:nth-of-type(even) {
    background-color: var(--v32-white);
}

.ct-section:nth-of-type(odd) {
    background-color: var(--v32-background-light);
}

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

.ct-section-header h2 {
    margin-bottom: 0.8rem;
    color: var(--v32-primary);
}

.ct-section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--v32-text-dark);
}

/* Course Cards */
.ct-course-card {
    background-color: var(--v32-white);
    border-radius: var(--v32-border-radius);
    box-shadow: var(--v32-shadow-light);
    overflow: hidden;
    transition: transform var(--v32-transition-speed), box-shadow var(--v32-transition-speed);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ct-course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--v32-shadow-medium);
}

.ct-course-card-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.ct-course-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-course-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ct-course-card h3 {
    color: var(--v32-secondary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.ct-course-card p {
    font-size: 0.95rem;
    color: var(--v32-text-dark);
    flex-grow: 1;
}

.ct-course-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--v32-text-muted);
}

.ct-course-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.ct-course-card-meta svg {
    fill: var(--v32-accent);
    width: 18px;
    height: 18px;
}

/* Testimonials */
.ct-testimonial-card {
    background-color: var(--v32-white);
    border-radius: var(--v32-border-radius);
    box-shadow: var(--v32-shadow-light);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.ct-testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--v32-text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    padding-left: 1.5rem;
}

.ct-testimonial-card blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--v32-primary);
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    line-height: 1;
}

.ct-testimonial-card cite {
    font-weight: 600;
    color: var(--v32-secondary);
    font-style: normal;
    margin-top: auto;
}

.ct-testimonial-card cite span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--v32-text-muted);
}

/* Trust Badges */
.ct-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}

.ct-badge-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--v32-white);
    padding: 1.5rem 2rem;
    border-radius: var(--v32-border-radius);
    box-shadow: var(--v32-shadow-light);
    transition: transform var(--v32-transition-speed);
}

.ct-badge-item:hover {
    transform: translateY(-5px);
}

.ct-badge-item svg {
    fill: var(--v32-accent);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.ct-badge-item p {
    font-weight: 600;
    color: var(--v32-text-dark);
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Pricing Cards */
.ct-pricing-card {
    background-color: var(--v32-white);
    border-radius: var(--v32-border-radius);
    box-shadow: var(--v32-shadow-light);
    padding: 2.5rem;
    text-align: center;
    transition: transform var(--v32-transition-speed), box-shadow var(--v32-transition-speed);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ct-pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--v32-shadow-medium);
}

.ct-pricing-card h3 {
    color: var(--v32-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ct-pricing-card .ct-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--v32-secondary);
    margin-bottom: 1rem;
}

.ct-pricing-card .ct-price span {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--v32-text-muted);
}

.ct-pricing-card ul {
    text-align: left;
    margin: 1.5rem 0 2rem;
    flex-grow: 1;
}

.ct-pricing-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--v32-text-dark);
}

.ct-pricing-card ul li svg {
    fill: var(--v32-accent);
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
}

/* FAQ Accordion */
.ct-faq-item {
    background-color: var(--v32-white);
    border-radius: var(--v32-border-radius);
    box-shadow: var(--v32-shadow-light);
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.ct-faq-q:hover {
    background-color: var(--v32-background-light);
}

.ct-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--v32-primary);
    transition: transform var(--v32-transition-speed);
}

.ct-faq-item.active .ct-faq-q::after {
    transform: rotate(45deg);
}

.ct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--v32-transition-speed);
    padding: 0 1.5rem;
}

.ct-faq-item.active .ct-faq-a {
    max-height: 500px; /* Adjust as needed for content */
    padding-bottom: 1.2rem;
}

.ct-faq-a p {
    font-size: 0.95rem;
    color: var(--v32-text-dark);
    margin-bottom: 0;
}

/* Forms */
.ct-form-group {
    margin-bottom: 1.2rem;
}

.ct-form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--v32-secondary);
    font-size: 0.95rem;
}

.ct-form-group input[type="text"],
.ct-form-group input[type="email"],
.ct-form-group input[type="tel"],
.ct-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--v32-text-muted);
    border-radius: var(--v32-border-radius);
    font-family: 'Cabin', sans-serif;
    font-size: 1rem;
    color: var(--v32-text-dark);
    background-color: var(--v32-white);
    transition: border-color var(--v32-transition-speed), box-shadow var(--v32-transition-speed);
}

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

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

.ct-form-message {
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: var(--v32-border-radius);
    font-weight: 600;
    display: none;
}

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

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

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

.ct-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ct-footer-col h4 {
    color: var(--v32-accent);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.ct-footer-col p,
.ct-footer-col a,
.ct-footer-col ul li {
    color: var(--v32-text-muted);
}

.ct-footer-col a:hover {
    color: var(--v32-white);
}

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

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

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

.ct-footer-bottom p {
    color: var(--v32-text-muted);
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ct-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.ct-animate.ct-animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ct-nav-list {
        gap: 1.5rem;
    }

    .ct-section {
        padding: 4rem 0;
    }

    .ct-hero h1 {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
    }

    .ct-hero p {
        font-size: 1.2rem;
    }

    .ct-badge-item {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .ct-nav-list {
        display: none;
    }

    .ct-hamburger-menu {
        display: flex;
    }

    .ct-hero-content {
        padding: 1rem;
    }

    .ct-hero h1 {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .ct-hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .ct-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .ct-section {
        padding: 3rem 0;
    }

    .ct-section-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
    }

    .ct-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ct-footer-col ul {
        padding-left: 0;
    }

    .ct-badge-item {
        width: 45%;
        max-width: 200px;
    }

    .ct-trust-badges {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ct-container {
        padding: 0 1rem;
    }

    .ct-logo {
        font-size: 1.5rem;
    }

    .ct-hero h1 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }

    .ct-hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .ct-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

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

    .ct-pricing-card {
        padding: 2rem 1.5rem;
    }

    .ct-pricing-card .ct-price {
        font-size: 2.5rem;
    }

    .ct-faq-q {
        padding: 1rem;
    }

    .ct-faq-a {
        padding: 0 1rem;
    }

    .ct-badge-item {
        width: 100%;
        max-width: 250px;
    }
}


/* === 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); }