/* Variables & Reset */
:root {
    --color-sky-blue: #C5E5F0;
    --color-pastel-pink: #F8D0DF;
    --color-light-yellow: #FFF1D0;
    --color-yellow: #FADB5F;
    --color-text: #333333;
    --color-white: #FFFFFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-logo: 'Playpen Sans', cursive;
}

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

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-yellow);
    color: #000;
}

.btn-primary:hover {
    background-color: #E5C34A;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-text);
    color: var(--color-text);
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

.btn-text {
    background: none;
    padding: 0;
    color: var(--color-text);
    text-decoration: underline;
}

/* Ticker */
.ticker-ribbon {
    background-color: var(--color-pastel-pink);
    color: #000;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 2px solid #000;
}

.ticker-content {
    display: inline-block;
    animation: ticker 20s linear infinite;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.ticker-content span {
    margin-right: 50px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
    background-color: var(--color-white);
    padding: 20px 0;
    border-bottom: 2px solid #000;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-logo-link {
    font-family: var(--font-logo);
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-navigation a:hover {
    color: var(--color-yellow);
}

/* Hero Section */
.hero-section {
    background-color: var(--color-sky-blue);
    padding: 80px 0;
    border-bottom: 2px solid #000;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 20px;
    border: 2px solid #000;
    box-shadow: 10px 10px 0px #000;
}

/* Stats Section */
.stats-section {
    background-color: var(--color-light-yellow);
    padding: 60px 0;
    border-bottom: 2px solid #000;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Services Grid */
.services-overview {
    padding: 80px 0;
}

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

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

.service-card {
    border: 2px solid #000;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    background: var(--color-white);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 0px var(--color-sky-blue);
}

.service-img img, .placeholder-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #000;
}

.placeholder-img {
    background-color: #EEE;
}

.service-content {
    padding: 30px;
}

/* Banner */
.info-banner {
    background-color: var(--color-pastel-pink);
    padding: 60px 0;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text h2 {
    margin-bottom: 10px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-card {
    text-align: center;
}

.team-img img, .team-card .placeholder-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000;
    margin: 0 auto 20px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}
.value-item {
    padding: 30px;
    border: 2px solid #000;
    border-radius: 20px;
    background: var(--color-white);
}

/* Contact */
.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-form-section {
    flex: 2;
}

.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #000;
    border-radius: 10px;
    font-family: inherit;
    margin-bottom: 20px;
}

.info-card {
    padding: 30px;
    border: 2px solid #000;
    border-radius: 20px;
}

.info-card.highlight {
    background-color: var(--color-yellow);
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Footer */
.site-footer {
    background-color: var(--color-white);
    border-top: 2px solid #000;
}

.footer-main {
    padding: 60px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

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

.footer-bottom {
    background-color: var(--color-yellow);
    padding: 20px 0;
    border-top: 2px solid #000;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo-bottom {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-links a {
    color: #000;
    margin-left: 20px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 20px; }
    .main-navigation ul { flex-direction: column; gap: 10px; text-align: center; }
    .hero-container { flex-direction: column; text-align: center; }
    .stats-container { flex-direction: column; gap: 30px; }
    .banner-container { flex-direction: column; text-align: center; gap: 30px; }
    .contact-layout { flex-direction: column; }
    .form-row { flex-direction: column; gap: 0; }
    .bottom-container { flex-direction: column; gap: 15px; }
}
