/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #4D5947;
    --dark-green: #3a4335;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loader {
    width: 64px;
    height: 64px;
    position: relative;
    background: var(--white);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: rotate 2s linear infinite;
}

.loader-text {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.loader-dots {
    display: inline-block;
}

.loader-dots span {
    opacity: 0;
    animation: dotAnimation 1.4s infinite;
}

.loader-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.loader:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 30px;
    background: rgba(142, 39, 41, 1);
    transform: skew(5deg, 60deg) translate(-50%, -5%);
}

.loader:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    0% { transform: rotate(45deg); }
    30%, 50%, 70% { transform: rotate(230deg); }
    40%, 60%, 80% { transform: rotate(240deg); }
    100% { transform: rotate(245deg); }
}

@keyframes dotAnimation {
    0%, 20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1505px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

.top-bar p {
    margin: 0;
    text-align: center;
}

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

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 20px;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 45px;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-green);
}

.dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
}

.logo img {
    height: 60px;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-green);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: var(--light-gray);
    color: var(--primary-green);
}

.dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-toggle.active {
    color: var(--primary-green);
}

.nav-link.active {
    color: var(--primary-green);
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--primary-green);
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    padding: 80px 20px 20px;
    transition: right 0.3s;
    z-index: 200;
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    color: var(--white);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(97.22deg, rgba(66, 66, 66, 0.87) 4.79%, rgba(135, 119, 119, 0.84) 56.88%, rgba(87, 86, 86, 0.51) 100%), url('../images/hero.png') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: var(--white);
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.4;
}

/* Excellence Section */
.excellence {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    color: var(--primary-green);
    margin-bottom: 20px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.cert-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cert-card img {
    max-width: 200px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.cert-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 60px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    color: var(--primary-green);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Classes Section */
.classes {
    padding: 80px 0;
    background-color: var(--white);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.class-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.class-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.class-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--text-dark);
}

.class-card ul {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.class-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.class-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: calc(100% - 40px);
    margin: 10px 20px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-green);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
    text-align: center;
}

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

.disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 12px;
    margin-top: 30px;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background-color: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    margin-bottom: -40px;
    background-color: var(--primary-green);
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
}

.footer-left {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
    margin-top: 0;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-info p strong {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: rgba(255,255,255,0.3);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.footer-right {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
}

.footer-right h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 0;
    color: var(--white);
}

.footer-right > p {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 0;
    color: var(--white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    scroll-margin-top: 100px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
}

.form-grid .textarea-large {
    grid-row: 2 / 4;
    grid-column: 2;
}

.form-grid .checkbox-grid {
    grid-column: 1;
    grid-row: 4;
}

.form-grid .btn-submit {
    grid-column: 2;
    grid-row: 4;
    margin: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--white);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.contact-form select option {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 10px;
}

.contact-form select option:first-child {
    color: #999;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
    opacity: 1;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    background-color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-right .btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
    font-weight: 600;
}

.form-grid .btn-primary {
    width: 100%;
}

.footer-right .btn-primary:hover {
    background-color: var(--light-gray);
    color: var(--primary-green);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-top: 8px;
}

.footer-right .checkbox-label {
    color: var(--white);
}

.checkbox-label input {
    width: auto;
}

.footer-map {
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer-map iframe {
    height: 400px;
    width: 100%;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(97.22deg, rgba(66, 66, 66, 0.87) 4.79%, rgba(135, 119, 119, 0.84) 56.88%, rgba(87, 86, 86, 0.51) 100%), url('../images/hero.png') center/cover;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-overlay {
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Content Section */
.content-section {
    padding: 60px 0;
    background-color: var(--white);
}

.content-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 16px;
    color: var(--text-dark);
}

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

.content-text h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.content-text h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Two Column List */
.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.list-item .bullet {
    color: var(--primary-green);
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.list-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.section-subtitle-main {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: left;
}

/* Staff Section */
.staff-section {
    background-color: var(--light-gray);
}

.staff-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.staff-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.staff-form-card {
    background-color: var(--primary-green);
    padding: 40px 30px;
    border-radius: 10px;
    color: var(--white);
    position: sticky;
    top: 100px;
}

.staff-form-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.staff-form-card p {
    font-size: 14px;
    margin-bottom: 25px;
}

.staff-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.staff-form input,
.staff-form textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.staff-form textarea {
    resize: vertical;
}

.btn-upload {
    background-color: rgba(255,255,255,0.2);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-upload:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid,
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
        margin-bottom: -30px;
    }

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

    .form-grid .textarea-large {
        grid-row: 2 / 4;
        grid-column: 2;
    }

    .form-grid .checkbox-grid {
        grid-column: 1;
        grid-row: 4;
    }

    .form-grid .btn-submit {
        grid-column: 2;
        grid-row: 4;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 10px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

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

    .mobile-menu {
        display: flex;
    }

    .two-column-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .staff-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .staff-form-card {
        position: static;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .hero-title {
        font-size: 24px;
        padding: 0 20px;
    }

    .hero-logo {
        max-width: 200px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        margin-bottom: -30px;
    }

    .footer-left {
        padding: 0;
    }

    .footer-right {
        padding: 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-grid .textarea-large {
        grid-row: auto;
        grid-column: auto;
    }

    .form-grid .checkbox-grid {
        grid-column: auto;
        grid-row: auto;
    }

    .form-grid .btn-submit {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-map iframe {
        height: 250px;
    }

    .hero {
        min-height: 400px;
    }

    .container {
        padding: 0 20px;
    }

    .btn-primary,
    .btn-outline,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-section p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .excellence,
    .certifications,
    .classes,
    .cta-section {
        padding: 40px 0;
    }

    .footer {
        padding: 30px 0 0;
    }

    .footer-content {
        padding: 20px 15px;
        margin-bottom: -20px;
    }

    .hero-title {
        font-size: 18px;
    }

    .section-title {
        font-size: 22px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-logo {
        max-width: 150px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .cert-card h3,
    .class-card h3 {
        font-size: 20px;
    }

    .footer-map iframe {
        height: 200px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 26px;
    }

    .top-bar {
        font-size: 9px;
        padding: 5px 0;
    }

    .btn-primary,
    .btn-outline,
    .btn-secondary {
        padding: 10px 15px;
        font-size: 13px;
    }

    .cta-section h2 {
        font-size: 22px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }
}

/* Development Screen */
.development-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    z-index: 10000;
    overflow-y: auto;
    color: var(--white);
}

.development-screen.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.development-content {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    gap: 40px;
}

.development-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.development-logo {
    max-width: 200px;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.development-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.2;
}

.development-subtitle {
    font-size: 20px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.development-info {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 25px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s both;
    box-sizing: border-box;
}

.development-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 600;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
    justify-items: center;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
}

.contact-item strong {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    margin: 0;
}

.contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.social-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
    text-align: center;
}

.development-social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.development-social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.development-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.development-social-icon img {
    width: 22px;
    height: 22px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .development-content {
        padding: 30px 15px;
        width: 100%;
        margin: 0 auto;
        gap: 30px;
    }
    
    .development-header {
        max-width: 100%;
    }
    
    .development-info {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 25px 20px;
    }
    
    .contact-grid {
        justify-items: center;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .development-logo {
        max-width: 150px;
        margin-bottom: 20px;
    }

    .development-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .development-subtitle {
        font-size: 16px;
        margin-bottom: 0;
    }

    .development-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item strong {
        font-size: 15px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .development-content {
        padding: 25px 15px;
        width: 100%;
        margin: 0 auto;
        gap: 25px;
    }
    
    .development-header {
        max-width: 100%;
    }

    .development-title {
        font-size: 24px;
    }

    .development-subtitle {
        font-size: 15px;
    }

    .development-info {
        padding: 20px 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .development-info h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .development-logo {
        max-width: 120px;
        margin-bottom: 15px;
    }
    
    .contact-grid {
        justify-items: center;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto !important;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }

    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 26px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

