/*ROOT*/
:root {
    --themeColorYellow: #f7c507; /*Color: Yellow*/
    --themeColorGreen: #3acb8d; /*Color: Green*/
    --themeColorRed: #da3439; /*Color: Red*/
    --themeColorBlueLight: #48a585; /*Color: Blue Light*/
    --themeColorBlueNavy: #075252; /*Color: Blue Navy*/
    --themeColorWhite: #ffffff; /*Color: White*/
    --themeColorSilverLight: #f2f2f2; /*Color: SilverLight*/
    --themeColorSilver: #a9abae; /*Color: Silver*/
    --themeColorSilverDark: #848688; /*Color: SilverDark*/
    --themeColorBlack: #333333; /*Color: Black*/
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

.content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/*FONT ZERO*/
.fontzero {
    font-size: 0;
}

/*NO VISIBLE*/
.no-visible {
    display: none;
}

.scrollTop {
    position: fixed;
    bottom: 20px;
    right: 34px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: #059669;
    color: white;
    transition: background-color ease 0.5s;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.scrollTop:hover {
    background: #047857;
    transition: background-color ease 0.5s;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: white;
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Buttons */
.new-btn {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-btn-primary {
    background: #059669;
    color: white;
}

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

.new-btn-outline {
    background: transparent;
    color: #059669;
    border: 2px solid #059669;
}

.new-btn-outline:hover {
    background: #059669;
    color: white;
	transform: translateY(-2px);
}

.new-btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.new-btn-outline-white:hover {
    background: white;
    color: #059669;
	transform: translateY(-2px);
}

.new-btn-secondary {
    background: white;
    color: #059669;
}

.new-btn-secondary:hover {
    background: #f3f4f6;
	transform: translateY(-2px);
}

.new-btn-full {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #059669;
    padding: 10px 0;
}

.logo img {
    display: flex;
    align-items: center;
    height: 100%;
    max-height: 100px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav > a,
.dropdown > a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-nav > a:hover,
.dropdown > a:hover {
    color: #059669;
}

.contact-info {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.contact-info-footer {
    display: flex;
	flex-direction: column;
    gap: 16px;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
}

.contact-item i {
    color: #059669;
}

/*.mobile-menu-btn {*/
/*    display: none;*/
/*    background: none;*/
/*    border: none;*/
/*    font-size: 20px;*/
/*    color: #059669;*/
/*    cursor: pointer;*/
/*}*/

/*.mobile-nav {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    gap: 16px;*/
/*    padding: 20px 0;*/
/*    border-top: 1px solid #e5e7eb;*/
/*}*/

/*.mobile-nav a {*/
/*    text-decoration: none;*/
/*    color: #6b7280;*/
/*    font-weight: 500;*/
/*    padding: 8px 0;*/
/*}*/

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #22c55e;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f0fdf4;
    color: #22c55e;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    font-size: 2em;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/hero_section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.highlight {
    color: #10b981;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #d1d5db;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 48px;
    color: #d1d5db;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.stat i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: #d1d5db;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Hero Pages */
.hero-pages {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-pages-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/hero_section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-pages-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
    z-index: -1;
}

.hero-pages-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-pages-content h1 {
    font-size: 2.4em;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    color: #10b981;
}

.hero-pages .highlight {
    color: #10b981;
}

.hero-pages-subtitle {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #d1d5db;
}

.hero-pages-description {
    font-size: 1.1rem;
    margin-bottom: 48px;
    color: #d1d5db;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.hero-pages-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.hero-pages-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-pages-stat i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 8px;
}

.hero-pages-stat-number {
    font-size: 1.2rem;
    font-weight: 700;
}

.hero-pages-stat-label {
    font-size: 0.9rem;
    color: #d1d5db;
}

.hero-pages-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 12px;
    background: white;
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 64px;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin: 24px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    color: #6b7280;
    margin-bottom: 12px;
}

.about-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #059669;
    border-radius: 50%;
    margin-right: 12px;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: opacity 2s ease;
}

.about-image a {
    transition: transform 2s ease;
}

.about-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 2s ease;
}

.about-image a .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    font-size: 3em !important;
    color: rgba(255,255,255,0.5);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.about-image a:hover img {
    transform: scale(1.1);
    transition: transform 1s ease;
}

.about-image a:hover .zoom-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 3em !important;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.7);
    opacity: 1;
    transition: font-size 1s ease;
}

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

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 16px;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #059669;
    color: white;
    border-color: #059669;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
}

.gallery-item a {
    text-decoration: none;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    /*height: 250px;*/
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.gallery-overlay {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: stretch;
    align-items: flex-start;
    min-height: 150px;
    color: #333;
    padding: 24px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-item:hover h4 {
    color: #059669;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: #aaa;
}

.gallery-item:hover p {
    color: #555;
}

.gallery-load-more {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 1.5rem;
    color: #059669;
    margin-top: 4px;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.contact-card p {
    color: #1f2937;
    margin-bottom: 4px;
}

.contact-card span {
    font-size: 0.85rem;
    color: #6b7280;
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
}

.contact-form h3 i {
    color: #059669;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #059669;
}

.form-note {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin-top: 8px;
}

.cta-section {
    /*margin-top: 64px;*/
}

.cta-card {
    background: #059669;
    color: white;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.1rem;
    color: #d1fae5;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 16px;
}

.footer-logo img {
    display: flex;
    align-items: center;
    height: 100%;
    max-height: 60px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10b981;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    color: #d1d5db;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.3em;
}

.social-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a i:before {
    margin: 0;
}

.social-links a:hover {
    background: #10b981;
    color: white;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact .contact-item > div {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-contact .contact-item div i {
    color: #10b981;
    width: 25px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.footer-contact .contact-item div p {
    margin-bottom: 2px;
}

.footer-contact .contact-item span {
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #10b981;
}

.footer-powerby {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-powerby div.footer_copyright_powerby a {
    font-size: 2em;
    color: #9ca3af !important;
    text-decoration: none;
    -webkit-transition: all linear 0.5s;
    -moz-transition: all linear 0.5s;
    transition: all linear 0.5s;
}

.footer-powerby div.footer_copyright_powerby a:hover {
    color: #fff !important;
}

.footer-powerby div.footer_copyright_powerby:before {
    content: "Powered by";
    font-size: .795em;
    color: #9ca3af !important;
    margin-right: 5px;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 125px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    background: linear-gradient(0deg, #ececec, #fff);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.mobile-nav-item {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: #22c55e;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    padding-bottom: 16px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 8px 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
}

.mobile-dropdown-menu a:hover {
    color: #22c55e;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-info {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        max-width: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .new-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .new-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 5%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .cta-card {
        padding: 32px 24px;
    }
}