:root {
    --primary-color: #1a1a2e;
    --accent-teal: #16a085;
    --accent-coral: #ff6b6b;
    --accent-gold: #f39c12;
    --accent-purple: #9b59b6;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-cream: #fef9e7;
    --white: #ffffff;
    --border-color: #bdc3c7;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --gradient-1: linear-gradient(120deg, #16a085 0%, #f39c12 100%);
    --gradient-2: linear-gradient(120deg, #ff6b6b 0%, #9b59b6 100%);
    --gradient-3: linear-gradient(120deg, #1a1a2e 0%, #16a085 100%);
}

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

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.2;
}

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

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--accent-teal);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    position: relative;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.nav-menu-container {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    display: block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 10px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--accent-teal);
    font-weight: 700;
}

.nav-menu a:hover {
    color: var(--accent-teal);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background: var(--gradient-1);
}

.hero {
    position: relative;
    background: var(--primary-color);
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 12rem 0 10rem;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 160, 133, 0.7) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 6s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-overlay {
    display: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -3px;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: slideInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    transform: skewX(-20deg);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(22, 160, 133, 0.4);
    transform: skewX(-5deg);
}

.btn-primary:hover {
    transform: skewX(-5deg) translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(22, 160, 133, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    border-width: 3px;
    transform: skewX(-5deg);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: skewX(-5deg) translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.features {
    padding: 8rem 0;
    background: var(--bg-cream);
    position: relative;
    margin-top: -120px;
    clip-path: polygon(50% 0%, 100% 10%, 100% 100%, 0 100%, 0 10%);
}

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

.feature-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px 5px 25px 5px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 4px solid transparent;
    position: relative;
    overflow: hidden;
    transform: rotate(-2deg);
}

.feature-card:nth-child(even) {
    transform: rotate(2deg);
    border-radius: 5px 25px 5px 25px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-1);
    opacity: 0;
    transition: all 0.5s ease;
    transform: rotate(45deg);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(22, 160, 133, 0.2);
    border-color: var(--accent-teal);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50% 10% 50% 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.8rem;
    transform: rotate(-10deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 30px rgba(22, 160, 133, 0.4);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-coral);
    border-radius: 50%;
    top: -10px;
    right: -10px;
    opacity: 0.8;
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.15);
    box-shadow: 0 20px 40px rgba(22, 160, 133, 0.5);
    border-radius: 10% 50% 10% 50%;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview,
.services-detailed,
.about-content,
.contact-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -10px;
    width: 80px;
    height: 8px;
    background: var(--gradient-1);
    border-radius: 20px;
    transform: skewX(-20deg);
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--accent-coral);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

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

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 3rem;
    border-radius: 30px 10px 30px 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 6px solid var(--accent-teal);
    border-bottom: 6px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(50%, -50%);
    transition: all 0.5s ease;
}

.service-card:hover::before {
    transform: translate(30%, -30%) scale(1.5);
    opacity: 0.15;
}

.service-card:hover {
    transform: translateX(10px) translateY(-10px);
    box-shadow: -10px 25px 50px rgba(22, 160, 133, 0.25);
    border-left-width: 10px;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 20px 50% 20px 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transform: rotate(-15deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 30px rgba(22, 160, 133, 0.4);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-coral);
    border-radius: 50%;
    bottom: -5px;
    left: -5px;
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.2);
    box-shadow: 0 20px 40px rgba(22, 160, 133, 0.5);
    border-radius: 50% 20px 50% 20px;
}

.service-card h3 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, var(--accent-teal) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.service-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-link:hover {
    gap: 1rem;
}

.service-link i {
    transition: all 0.4s ease;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-link:hover i {
    transform: translateX(8px) rotate(360deg);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 4rem;
    background-color: var(--white);
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.05;
}

.service-detail.reverse {
    background-color: var(--bg-light);
}

.service-detail.reverse::before {
    right: auto;
    left: -20%;
    background: var(--gradient-2);
}

.service-detail.reverse .service-detail-content {
    order: 2;
}

.service-detail.reverse .service-detail-image {
    order: 1;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.service-detail h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
}

.service-detail p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-features i {
    color: var(--accent-cyan);
    font-size: 1.25rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-image {
    height: 450px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.service-detail:hover .service-detail-image {
    transform: rotate(0deg) scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
    opacity: 0.9;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
}

.cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    margin: 5rem 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 8s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.15;
    animation: pulse 6s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.cta-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 95%, 0 85%);
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.15;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-intro p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.about-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-cream) 100%);
    padding: 3.5rem 3rem;
    border-radius: 30px 10px 30px 10px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--accent-teal);
    border-right: 5px solid var(--accent-gold);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    transform: rotate(-1deg);
}

.about-card:nth-child(2) {
    transform: rotate(1deg);
    border-radius: 10px 30px 10px 30px;
}

.about-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-1);
    transition: height 0.5s ease;
    opacity: 0.1;
}

.about-card:hover::before {
    height: 100%;
}

.about-card:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(22, 160, 133, 0.2);
    border-top-width: 8px;
}

.about-card-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50% 20% 50% 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    transform: rotate(-12deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 15px 35px rgba(22, 160, 133, 0.4);
    position: relative;
}

.about-card-icon::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: var(--accent-coral);
    border-radius: 50%;
    top: -12px;
    right: -12px;
    opacity: 0.9;
}

.about-card:hover .about-card-icon {
    transform: rotate(0deg) scale(1.2);
    box-shadow: 0 20px 45px rgba(22, 160, 133, 0.5);
    border-radius: 20% 50% 20% 50%;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.why-choose {
    margin-bottom: 5rem;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 1.5rem;
}

.why-item i {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.why-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.why-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
}

.company-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-cream) 100%);
    border-radius: 20px 5px 20px 5px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-teal);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.info-item:hover {
    transform: translateX(8px) translateY(-8px);
    box-shadow: -8px 20px 45px rgba(22, 160, 133, 0.2);
    border-left-width: 8px;
}

.info-item i {
    font-size: 2.25rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-info-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border-radius: 25px 8px 25px 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--accent-gold);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-method:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: -10px 20px 45px rgba(243, 156, 18, 0.2);
    border-bottom-width: 8px;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50% 15% 50% 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
    transform: rotate(-10deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 12px 30px rgba(22, 160, 133, 0.4);
}

.contact-method:hover .method-icon {
    transform: rotate(0deg) scale(1.15);
    border-radius: 15% 50% 15% 50%;
}

.method-details h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.method-details p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.method-details small {
    color: var(--text-light);
}

.business-hours {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
}

.business-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours span {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem 1.5rem;
    border: 3px solid var(--border-color);
    border-radius: 15px 5px 15px 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background-color: var(--bg-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    background-color: var(--white);
    box-shadow: 0 8px 20px rgba(22, 160, 133, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-radius: 5px 15px 5px 15px;
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    display: block;
}

.map-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.map-container {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--border-color);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-cyan);
}

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #16a085 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    margin-top: 5rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.15;
}

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

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--accent-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50% 15% 50% 15%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(22, 160, 133, 0.4);
    transform: rotate(-5deg);
}

.social-links a:hover {
    transform: translateY(-8px) rotate(360deg) scale(1.2);
    box-shadow: 0 15px 35px rgba(22, 160, 133, 0.5);
    border-radius: 15% 50% 15% 50%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        grid-template-columns: auto 1fr auto;
    }

    .logo {
        grid-column: 1;
        justify-content: flex-start;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1.25rem 1rem;
        text-align: left;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a.active {
        color: var(--accent-cyan);
        font-weight: 600;
        background: rgba(6, 182, 212, 0.05);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-detail.reverse .service-detail-content,
    .service-detail.reverse .service-detail-image {
        order: unset;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-buttons {
        flex-direction: column;
        justify-content: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
