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

:root {
    --primary-color: #27ae60;
    --primary-light: #52be80;
    --primary-dark: #1e8449;
    --secondary-color: #1e8449;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --accent-color: #25d366;
    --telegram-color: #0088cc;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
    color: var(--primary-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-color);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    height: 55px;
    width: auto;
    animation: slideInLeft 0.8s ease-out;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Playfair Display', 'Tajawal', serif;
}

.brand-text .tagline {
    font-size: 11px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
    font-size: 14px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Premium Section */
.hero-premium {
    background: linear-gradient(135deg, #ffffff 0%, #e8f8f5 100%);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 Q60 30 50 50 Q40 30 50 10" fill="%231e8449" opacity="0.05"/><path d="M20 40 Q30 60 20 80 Q10 60 20 40" fill="%231e8449" opacity="0.05"/><path d="M80 35 Q90 55 80 75 Q70 55 80 35" fill="%231e8449" opacity="0.05"/></svg>');
    background-repeat: repeat;
    opacity: 0.3;
    animation: sway 8s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(20px); }
}

.hero-premium .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-premium h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Playfair Display', 'Tajawal', serif;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: scaleIn 0.8s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    animation: slideUp 0.8s ease-out 0.4s both;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item p {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

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

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

.btn-small {
    padding: 10px 20px;
    font-size: 13px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', 'Tajawal', serif;
}

.section-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Tajawal', 'Poppins', sans-serif;
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
}

section:nth-child(odd) {
    background: #ffffff;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
}

/* About Section */
.about-section {
    background: #ffffff;
}

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

.about-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.08);
    transition: var(--transition);
    animation: slideUp 0.6s ease-out;
    border: 1px solid rgba(39, 174, 96, 0.2);
    text-align: center;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.15);
    border-color: var(--primary-color);
}

.about-icon {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.about-item h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.3px;
}

.about-item p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
    transition: var(--transition);
    animation: slideUp 0.6s ease-out;
    border-top: 4px solid var(--primary-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 132, 73, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.3px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-features li {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features i {
    color: var(--primary-color);
}

/* Operations Section */
.operations-section {
    background: #ffffff;
}

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

.operation-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    animation: slideUp 0.6s ease-out;
}

.operation-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.operation-image {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
    border: 2px solid rgba(39, 174, 96, 0.1);
}

.operation-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.operation-item:hover .operation-image img {
    transform: scale(1.05);
}

.operation-content h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Playfair Display', 'Tajawal', serif;
    letter-spacing: -0.5px;
}

.operation-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Company Info Section */
.company-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
    color: var(--text-color);
    padding: 80px 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    text-align: center;
    animation: slideUp 0.6s ease-out;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.12);
    border-top: 5px solid var(--primary-color);
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.info-box i {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: block;
}

.info-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: 'Poppins', 'Tajawal', sans-serif;
}

.info-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 600;
    font-family: 'Tajawal', 'Poppins', sans-serif;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
}

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

.gallery-grid a {
    text-decoration: none;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
    animation: slideInUp 0.6s ease-out forwards;
    border: 2px solid rgba(39, 174, 96, 0.1);
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
    display: block;
}

.gallery-grid a:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Clients Section */
.clients-section {
    background: #ffffff;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.client-item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.08);
    transition: var(--transition);
    animation: slideUp 0.6s ease-out;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.client-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.15);
    border-color: var(--primary-color);
}

.client-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.client-item h3 {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 14px;
    line-height: 1.4;
}

/* News Section */
.news-section {
    background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.1);
    transition: var(--transition);
    animation: slideUp 0.6s ease-out;
    border-top: 4px solid var(--primary-color);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.2);
}

.news-image {
    overflow: hidden;
    height: 220px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
}

.news-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin: 12px 0;
    font-weight: 700;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.news-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
    color: var(--primary-dark);
}

.quote-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e8f8f5 0%, #ffffff 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    animation: slideUp 0.6s ease-out;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-dark);
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-color);
    font-family: inherit;
    transition: var(--transition);
    font-size: 16px;
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
}

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

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    animation: slideUp 0.6s ease-out;
    padding: 20px;
    background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.info-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.3px;
}

.info-item p {
    color: #666;
    font-size: 14px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--primary-dark);
}

.contact-form {
    background: linear-gradient(135deg, #f0f8f5 0%, #ffffff 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-light);
}

.contact-form h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.3px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.3px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    background: #ffffff;
    color: var(--text-color);
    font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e8449 0%, #27ae60 100%);
    color: white;
    padding: 60px 20px 20px;
    border-top: 3px solid var(--primary-light);
}

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: 'Poppins', 'Tajawal', sans-serif;
    letter-spacing: 0.3px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

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

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

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: scale(1.1) rotateZ(10deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
    margin: 5px 0;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideInUp 0.6s ease-out;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    animation: popIn 0.5s ease-out;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.float-whatsapp {
    background: var(--accent-color);
}

.float-whatsapp:hover {
    background: #1fbd00;
}

.float-telegram {
    background: var(--telegram-color);
}

.float-telegram:hover {
    background: #0073b1;
}

.float-phone {
    background: #ff6b6b;
}

.float-phone:hover {
    background: #ff5252;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 15px;
    }

    .hero-premium .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .operation-item {
        grid-template-columns: 1fr;
    }

    .operation-item:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        gap: 10px;
    }

    .nav-brand {
        gap: 8px;
    }

    .logo {
        height: 45px;
    }

    .brand-text h1 {
        font-size: 18px;
    }

    .brand-text .tagline {
        font-size: 10px;
    }

    .nav-links {
        gap: 12px;
        font-size: 12px;
    }

    .hero-premium {
        padding: 60px 15px;
        min-height: 500px;
    }

    .hero-premium h1 {
        font-size: 36px;
    }

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

    .hero-description {
        font-size: 14px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    section {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .about-grid,
    .products-grid,
    .clients-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid img {
        height: 250px;
    }

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

    .contact-wrapper {
        gap: 20px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        flex-direction: column;
        gap: 8px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 11px;
    }

    .logo {
        height: 40px;
    }

    .brand-text h1 {
        font-size: 16px;
    }

    .hero-premium {
        padding: 40px 12px;
        min-height: 400px;
    }

    .hero-premium h1 {
        font-size: 28px;
    }

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

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }

    section {
        padding: 40px 12px;
    }

    .section-header h2 {
        font-size: 24px;
    }

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

    .gallery-grid img {
        height: 200px;
    }

    .quote-form {
        padding: 20px;
    }

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

    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .footer-content {
        gap: 20px;
    }
}
