/* Global Styles */
:root {
    --primary: #d4af37;
    --secondary: #8b4513;
    --light: #f9f5e9;
    --dark: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, 
        #f0f8e6 0%, 
        #e8f5e8 25%, 
        #e0f2e0 50%, 
        #d8efe8 75%, 
        #e8e8f5 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle pattern overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

.hero {
    background: linear-gradient(135deg, 
        rgba(240, 248, 230, 0.9) 0%, 
        rgba(232, 245, 232, 0.9) 50%, 
        rgba(212, 175, 55, 0.1) 100%);
    backdrop-filter: blur(5px);
    border-radius: 0 0 50px 50px;
    margin-top: 70px;
    margin-bottom: 20px;
}

.welcome {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 230, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 10px 30px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.services {
    background: linear-gradient(135deg, 
        rgba(232, 245, 232, 0.9) 0%, 
        rgba(224, 242, 224, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    margin: 40px 0;
}

.gallery {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 230, 0.9) 50%, 
        rgba(232, 245, 232, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #4CAF50, var(--primary));
    border-radius: 2px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e9c46a);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary), #9c6b3a);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 10px 20px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, transparent, rgba(76, 175, 80, 0.1));
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--secondary), #9c6b3a);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(90, 140, 66, 0.9) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002; 
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
    display: block;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    background: linear-gradient(135deg, var(--secondary), #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    background: linear-gradient(135deg, var(--primary), #e9c46a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 30px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 5px;
}

/* Hero Logo Image */
.logo-image {
    margin-bottom: 10px;
    text-align: left;
    padding-bottom: 0;
}

.logo-image img {
    max-width: 400px;
    height: auto;
}

.tagline {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary), #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #f0f8e6, #e8f5e8);
    padding: 10px;
    max-width: 400px;
    margin: 0 auto;   
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    border-radius: 15px;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Welcome Section */
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.welcome-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    height: 0;
    padding-bottom: 66.67%;
    background: linear-gradient(135deg, #f0f8e6, #e8f5e8);
}

.welcome-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.welcome-text {
    padding: 0;
}

.welcome-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.welcome-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(90, 140, 66, 0.1) 100%);
    padding: 15px 12px;
    border-radius: 12px;
    min-height: 100px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.welcome-card:hover::before {
    left: 100%;
}

.welcome-card:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(212, 175, 55, 0.3);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.welcome-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.welcome-card h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.welcome-card:hover h3 {
    color: var(--primary);
}

.welcome-card p {
    color: #666;
    line-height: 1.3;
    margin: 0;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.welcome-card:hover p {
    color: #555;
}

/* Animation keyframes */
@keyframes cardGlow {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
}

.welcome-card:nth-child(1) {
    animation: cardGlow 3s ease-in-out infinite;
}

.welcome-card:nth-child(2) {
    animation: cardGlow 3s ease-in-out 1s infinite;
}

.welcome-card:nth-child(3) {
    animation: cardGlow 3s ease-in-out 2s infinite;
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 230, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

.service-image {
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #f9f5e9, #f0f8e6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--secondary), #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    margin-bottom: 15px;
    color: #666;
}

.service-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.service-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, var(--primary), #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Forms Section */
.forms-section {
    display: none;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(139, 69, 19, 0.8) 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 2000;
    padding: 20px 0;
}

.forms-section.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.forms-section .container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 230, 0.9) 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.forms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--primary), #4CAF50, var(--primary)) 1;
    padding-bottom: 15px;
}

.forms-header h2 {
    margin: 0;
}

.close-forms {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
    line-height: 1;
}

.close-forms:hover {
    color: var(--primary);
}

.form-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.form-box {
    display: none;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(248, 252, 240, 0.95) 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-box.active {
    display: block;
}

.form-box h3 {
    text-align: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--secondary), #4CAF50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--secondary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Message Popup */
.message-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(139, 69, 19, 0.6) 100%);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.message-popup.active {
    display: flex;
}

.message-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 230, 0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.close-message {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.close-message:hover {
    color: var(--primary);
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.success-icon {
    color: #28a745;
    display: none;
}

.error-icon {
    color: #dc3545;
    display: none;
}

.message-popup.success .success-icon {
    display: inline-block;
}

.message-popup.error .error-icon {
    display: inline-block;
}

#message-title {
    margin-bottom: 15px;
    color: var(--secondary);
}

#message-text {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-container {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.slideshow {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.gallery-btn {
    background: linear-gradient(135deg, var(--primary), #e9c46a);
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 0 10px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-btn:hover {
    background: linear-gradient(135deg, var(--secondary), #9c6b3a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, 
        var(--secondary) 0%, 
        #9c6b3a 50%, 
        #4CAF50 100%);
    color: white;
    padding: 30px 0 15px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-column p, .footer-column a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    line-height: 1.4;    
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 6px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}
.copy-phone {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    transition: color 0.3s ease;
}

.copy-phone:hover {
    color: var(--primary);
}

.copy-tooltip {
    visibility: hidden;
    background-color: var(--dark);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    white-space: nowrap;
}

.copy-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark) transparent transparent transparent;
}

.copy-phone:hover .copy-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Copy feedback animation */
.copy-phone.copied {
    color: #28a745;
}

.copy-phone.copied .copy-tooltip {
    background-color: #28a745;
    content: "Copied!";
}

.copy-phone.copied .copy-tooltip::after {
    border-color: #28a745 transparent transparent transparent;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .welcome-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        text-align: center;
    }
    
    .logo-image img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 12px 0;
        position: relative;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(90, 140, 66, 0.95) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        margin-top: 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 1001;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 8px 0;
        width: 100%;
        text-align: center;        
    }
    .nav-links a {
        display: block;
        padding: 12px 20px;
        margin: 0 20px;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .nav-links a:hover {
        background: rgba(212, 175, 55, 0.15);
    }   
    
    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }
    .hamburger span {
        background-color: var(--dark);
        transition: var(--transition);
    }   
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    header {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(240, 248, 230, 0.95) 100%);
        backdrop-filter: blur(10px);
        
    } 
    .hero {
        padding: 30px 0;
    } 
    .hero-content {
        gap: 20px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 5px;
    }    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .welcome-image {
        min-height: 200px;
        order: -1;
    }
    .welcome-cards {
        gap: 10px;
    }
    
    .welcome-card {
        padding: 15px 12px;
        min-height: 100px;
    }
    .card-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .welcome-card h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .welcome-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }    
    .welcome-card:hover {
        transform: translateY(-5px) scale(1.01);
    }    
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .slideshow {
        height: 400px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 180px;
        padding: 15px
    }

    .forms-section .container {
        padding: 20px;
        margin: 20px;
    }
    
    .message-content {
        padding: 30px 20px;
    }
    
    .logo-image img {
        max-width: 250px;
    }
    
    .welcome-text {
        padding: 10px;
    }
    
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-column h3 {
        margin-bottom: 12px;
        font-size: 1.1rem;
    }
    
    .footer-column p, .footer-column a {
        margin-bottom: 5px;
        font-size: 0.9rem;
    }    
}

@media (max-width: 480px) {
    .nav-links {
        padding: 15px 0;
    }
    
    .nav-links a {
        padding: 10px 15px;
        margin: 0 15px;
    }
    
    .hamburger {
        transform: scale(0.9);
        right: 10px;
    }    
    .hero {
        padding: 40px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .slideshow {
        height: 300px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .logo-image img {
        max-width: 200px;
    }
    footer {
        padding: 25px 0 12px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        margin-right: 5px;
    }   
}
























