/* CSS Variables - Color Palette */
:root {
    --primary: #2B2B28;
    --accent: #E3B04B;
    --secondary: #F1D6AB;
    --background: #F8F8F8;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .about-text {
    text-align: right;
}

html[dir="rtl"] .highlights li {
    padding-left: 1.5rem;
    padding-right: 3rem;
    border-left: none;
    border-right: 4px solid var(--accent);
}

html[dir="rtl"] .highlights li:hover {
    transform: translateX(-5px);
}

html[dir="rtl"] .highlights li::before {
    left: auto;
    right: 1rem;
}

html[dir="rtl"] .about-text h3::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .info-item {
    border-left: none;
    border-right: 4px solid var(--accent);
}

html[dir="rtl"] .floating-call-btn {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .nav-wrapper {
    right: auto;
    left: -100%;
}

html[dir="rtl"] .nav-wrapper.active {
    left: 0;
    right: auto;
}

html[dir="rtl"] .nav-wrapper {
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

html[dir="rtl"] .nav-link {
    text-align: right;
}

html[dir="rtl"] .hero-text {
    text-align: right;
}

@media (min-width: 768px) {
    html[dir="rtl"] .about-text {
        padding-left: 0;
        padding-right: 0;
    }

    html[dir="rtl"] .hero-text {
        padding-left: 3rem;
        padding-right: 0;
    }

    html[dir="rtl"] .floating-call-btn {
        left: 30px;
        right: auto;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Arabic Font Support */
html[dir="rtl"] body {
    font-family: 'Segoe UI', 'Arial', 'Tahoma', sans-serif;
    line-height: 1.8;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
    font-weight: 700;
    letter-spacing: 0;
}

html[dir="rtl"] .btn {
    letter-spacing: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 48px;
    min-width: 120px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(227, 176, 75, 0.3);
}

.btn-primary:hover {
    background: #d49f3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 176, 75, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.btn-instagram:active {
    transform: translateY(0);
}

.btn-instagram .instagram-icon {
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(227, 176, 75, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    color: var(--primary);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(227, 176, 75, 0.1);
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--accent);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Language Toggle Button */
.lang-toggle {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 25px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(227, 176, 75, 0.3);
    flex-shrink: 0;
}

.lang-toggle:hover {
    background: #d49f3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 176, 75, 0.4);
}

.lang-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(227, 176, 75, 0.3);
}

.lang-icon-svg {
    display: inline-block;
    vertical-align: middle;
}

.lang-text {
    display: inline-block;
    font-weight: 700;
}

/* Instagram Follow Button */
.instagram-link {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border-radius: 25px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(188, 24, 136, 0.3);
    flex-shrink: 0;
    text-decoration: none;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

.instagram-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(188, 24, 136, 0.3);
}

.instagram-icon {
    display: inline-block;
    vertical-align: middle;
}

.instagram-text {
    display: inline-block;
    font-weight: 700;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a36 100%);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Subtle Grid Pattern Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(227, 176, 75, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 176, 75, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Animated Glow Effects */
.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 176, 75, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Floating Background Shapes */
.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

/* Animated Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        45deg,
        rgba(227, 176, 75, 0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(241, 214, 171, 0.05) 100%
    );
    animation: gradientShift 15s ease infinite alternate;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        opacity: 0.5;
        transform: translateX(-10%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateX(10%) scale(1.1);
    }
}

.hero-bg-shapes .shape {
    position: absolute;
    opacity: 0.05;
    border-radius: 50%;
}

.hero-bg-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    top: 10%;
    left: 5%;
    animation: floatShape 15s ease-in-out infinite;
}

.hero-bg-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, var(--secondary), var(--accent));
    top: 60%;
    right: 10%;
    animation: floatShape 20s ease-in-out infinite reverse;
}

.hero-bg-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: 20%;
    left: 15%;
    animation: floatShape 18s ease-in-out infinite;
    animation-delay: -5s;
}

.hero-bg-shapes .shape-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary), transparent);
    top: 30%;
    right: 20%;
    animation: floatShape 22s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(3deg);
    }
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-text h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-text p {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--background);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(116, 90, 242, 0.15);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.service-card h3 {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--background) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.about-image-wrapper {
    width: 100%;
    max-width: none;
}

.about-image {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(43, 43, 40, 0.15);
    background: var(--white);
    padding: 1rem;
    border: 3px solid var(--secondary);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(227, 176, 75, 0.1) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    position: relative;
}

.about-text {
    width: 100%;
}

.about-text h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1rem;
}

.highlights {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.highlights li {
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    position: relative;
    color: var(--text-dark);
    background: rgba(227, 176, 75, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
    font-weight: 500;
}

.highlights li:hover {
    background: rgba(227, 176, 75, 0.1);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(227, 176, 75, 0.2);
}

.highlights li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Biography Sections */
.intro-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.bio-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(227, 176, 75, 0.2);
}

.bio-section h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bio-section p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.education-list {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.education-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.education-list li::before {
    content: '🎓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 1.2rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background: var(--background);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.team-member .role {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, var(--primary) 0%, #3a3a36 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Subtle Grid Pattern Overlay */
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(227, 176, 75, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 176, 75, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Animated Glow Effects */
.footer-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 176, 75, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.footer-bg {
    background-image: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

/* Footer Floating Background Shapes */
.footer-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

/* Footer Animated Gradient Overlay */
.footer-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(
        225deg,
        rgba(227, 176, 75, 0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(241, 214, 171, 0.05) 100%
    );
    animation: gradientShift 15s ease infinite alternate;
    z-index: 0;
}

.footer-bg-shapes .shape {
    position: absolute;
    opacity: 0.05;
    border-radius: 50%;
}

.footer-bg-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    bottom: 10%;
    right: 5%;
    animation: floatShape 18s ease-in-out infinite;
}

.footer-bg-shapes .shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, var(--secondary), var(--accent));
    top: 20%;
    left: 10%;
    animation: floatShape 22s ease-in-out infinite reverse;
}

.footer-bg-shapes .shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent), transparent);
    top: 60%;
    right: 15%;
    animation: floatShape 20s ease-in-out infinite;
    animation-delay: -7s;
}

.footer-bg-shapes .shape-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary), transparent);
    bottom: 30%;
    left: 20%;
    animation: floatShape 25s ease-in-out infinite;
    animation-delay: -12s;
}

.footer-section .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.footer-section .section-title::after {
    background: var(--accent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Contact Form */
.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(241, 214, 171, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
    min-height: 48px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Wrapper */
.map-wrapper {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.info-item strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--white);
    margin-bottom: 0;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--secondary);
    margin-bottom: 0;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(227, 176, 75, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-call-btn svg {
    width: 28px;
    height: 28px;
}

.floating-call-btn span {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 2px;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(227, 176, 75, 0.6);
}

.floating-call-btn:active {
    transform: scale(1.05);
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .navbar .container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .logo img {
        max-height: 45px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-wrapper.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: 12px;
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .lang-toggle {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .instagram-link {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Mobile menu overlay */
    .nav-wrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .nav-wrapper.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Tablet Styles (min-width: 768px) */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-content .container {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .hero-image {
        max-width: 350px;
    }

    .hero-text {
        flex: 1;
        padding-left: 3rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .about-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

    .about-image-wrapper {
        flex: 1;
        max-width: none;
    }

    .about-text {
        flex: 1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-content {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-form-wrapper,
    .map-wrapper {
        flex: 1;
    }

    .map-container {
        height: 400px;
    }

    .floating-call-btn {
        width: 70px;
        height: 70px;
        bottom: 30px;
        right: 30px;
    }

    .floating-call-btn svg {
        width: 32px;
        height: 32px;
    }

    .floating-call-btn span {
        font-size: 0.75rem;
    }
}

/* Desktop Styles (min-width: 1024px) */
@media (min-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .hero-image {
        max-width: 450px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
    }

    .about-section {
        padding: 6rem 0;
    }

    .map-container {
        height: 450px;
    }
}

/* Large Desktop Styles (min-width: 1440px) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
}

/* Accessibility - Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Mobile Adjustments for Hero Background Effects */
@media (max-width: 767px) {
    .hero-bg-shapes .shape-1,
    .hero-bg-shapes .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .hero-bg-shapes .shape-3,
    .hero-bg-shapes .shape-4 {
        width: 120px;
        height: 120px;
    }
    
    .hero-section::after {
        width: 400px;
        height: 400px;
    }
    
    /* Footer background effects mobile adjustments */
    .footer-bg-shapes .shape-1,
    .footer-bg-shapes .shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .footer-bg-shapes .shape-3,
    .footer-bg-shapes .shape-4 {
        width: 120px;
        height: 120px;
    }
    
    .footer-section::after {
        width: 400px;
        height: 400px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-call-btn {
        display: none;
    }
}
