/* =========================================
   Seda College Landing Page Styles
   ========================================= */

/* --- Variables & Reset --- */
:root {
    --color-dark-blue: #023A49;
    --color-orange: #E28E26;
    --color-yellow: #FFCB05;
    --color-white: #FFFFFF;
    --color-text: #333333;
    --color-light-gray: #F5F5F5;
    --font-primary: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3 {
    color: var(--color-dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* --- Buttons --- */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(226, 142, 38, 0.4);
}

.btn-primary:hover {
    background-color: #d17e1e; /* Slightly darker orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 142, 38, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-blue);
    border-color: var(--color-dark-blue);
}

.btn-secondary:hover {
    background-color: rgba(2, 58, 73, 0.05);
}

/* --- Header --- */
.header {
    padding: 20px 0;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .logo {
    height: 80px;
    transition: height 0.3s ease;
}

/* --- Hero Section --- */
.hero {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, var(--color-light-gray));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 20px;
}

.trust-badge {
    display: inline-block;
    background-color: rgba(2, 58, 73, 0.08);
    color: var(--color-dark-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.live-badge {
    background-color: rgba(226, 142, 38, 0.1);
    color: var(--color-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 142, 38, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(226, 142, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(226, 142, 38, 0);
    }
}

/* Video Placeholder */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: var(--color-dark-blue);
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.video-placeholder:hover img {
    opacity: 0.9;
}

.play-button {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: var(--color-yellow);
    color: var(--color-dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding-left: 5px; /* Visual center adjustment */
    box-shadow: 0 4px 15px rgba(255, 203, 5, 0.5);
    transition: transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

/* Custom Progress Bar */
.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--color-orange);
    transition: width 0.1s linear;
}

/* --- Trust Section --- */
.trust-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--color-white);
}

.trust-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* --- Learning Section --- */
.learning-section {
    padding: 60px 0;
    background-color: var(--color-light-gray);
}

.learning-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.learning-list {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.learning-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.learning-list li:last-child {
    margin-bottom: 0;
}

.learning-list .icon {
    color: var(--color-orange);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* --- Personalized Message Block --- */
.personalized-message {
    padding: 60px 0;
}

.message-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(2, 58, 73, 0.2);
}

.message-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 80px;
    color: var(--color-yellow);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.message-box p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* --- Social Proof --- */
.social-proof {
    padding: 40px 0;
    text-align: center;
    background-color: var(--color-light-gray);
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.proof-text {
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    color: #666;
}

/* --- Final CTA Section --- */
.final-cta {
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-logo {
    height: 80px;
    margin: 0 auto 30px;
    filter: brightness(0) invert(1);
    transition: height 0.3s ease;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-yellow);
    font-weight: 600;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

@media (max-width: 768px) {
    .footer-contact-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.contact-block {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background-color 0.3s;
}

.contact-block:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.contact-block strong {
    color: var(--color-yellow);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-block p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-block .phone {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 600;
    color: var(--color-orange);
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
    .header .logo {
        height: 60px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .message-box p {
        font-size: 1.1rem;
    }
}
