/* Social Media Icon Colors in Footer */
.footer .social-links a[title="Facebook"] i {
    color: #1877F3;
    transition: color 0.3s;
}
.footer .social-links a[title="Facebook"]:hover i {
    color: #145db2;
}
.footer .social-links a[title="Instagram"] i {
    color: #E4405F;
    transition: color 0.3s;
}
.footer .social-links a[title="Instagram"]:hover i {
    color: #b92d4b;
}
.about-logo-large {
    max-width: 520px !important;
    width: 100%;
    height: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    display: block;
    margin-left: auto;
    margin-right: 0;
}

.about-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
/* Global Styles */
:root {
    --primary-color: #5b9ca8;
    --secondary-color: #4a8696;
    --accent-color: #ff6b6b;
    --gold-color: #a8d5dd;
    --gold-dark: #7db9c4;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    min-width: 0;
}

.logo-img {
    height: 75px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-top: -10px;
    margin-right: -5px;
    flex-shrink: 0;
}

.logo-text {
    line-height: 1.1;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-social {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    font-size: 1.3rem;
}

.nav-social a {
    transition: var(--transition);
}

.nav-social a[title="Facebook"] {
    color: #1877F3;
}

.nav-social a[title="Facebook"]:hover {
    color: #145db5;
}

.nav-social a[title="Instagram"] {
    color: #E4405F;
}

.nav-social a[title="Instagram"]:hover {
    color: #c13584;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--gold-color);
    color: #856404;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--gold-color);
}

.cta-button:hover {
    background-color: var(--gold-dark);
    color: white;
    border: 2px solid var(--gold-dark);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape1 {
    width: 300px;
    height: 300px;
    background-color: white;
    border-radius: 50%;
    top: -50px;
    right: 50px;
}

.shape2 {
    width: 200px;
    height: 200px;
    background-color: white;
    bottom: -50px;
    left: 100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.shape3 {
    width: 150px;
    height: 300px;
    background-color: white;
    top: 50%;
    right: 20%;
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600&fit=crop') center/cover no-repeat;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 213, 221, 0.7) 0%, rgba(168, 213, 221, 0.5) 100%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #e8f4f8;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.about-text p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-text .bio-text {
    color: #e8f4f8 !important;
    font-weight: 500 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.services-list {
    list-style: none;
    margin: 1rem 0;
}

.services-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e8f4f8;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.team-member {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold-color);
}

.member-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.member-info p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.member-phone {
    margin-top: 0.5rem;
}

.member-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.unsplash.com/photo-1552664222-b2e2b0bb5b3f?w=1200&h=600&fit=crop') center/cover no-repeat;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.7) 100%);
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

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

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--gold-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--gold-color);
}

.service-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Statistics Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1552664900-5fefbe7aa41d?w=1200&h=600&fit=crop') center/cover no-repeat;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 156, 168, 0.55) 0%, rgba(107, 179, 192, 0.45) 100%);
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: #e8f4f8;
    margin-top: 0.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #e8f4f8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.contact-item p {
    color: #e8f4f8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    font-weight: 500;
}

.contact-item a {
    color: #e8f4f8;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.contact-item a:hover {
    color: #e8f4f8;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(91, 156, 168, 0.3);
}

.submit-btn {
    background-color: var(--gold-color);
    color: #856404;
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.submit-btn:hover {
    background-color: var(--gold-dark);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 40px 20px 20px;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

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

.footer-social {
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Calculator Section */
.calculator-section {
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.unsplash.com/photo-1552664222-b2e2b0bb5b3f?w=1200&h=600&fit=crop') center/cover no-repeat;
    position: relative;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 213, 221, 0.6) 0%, rgba(255, 255, 255, 0.7) 100%);
    pointer-events: none;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.calculator-form,
.calculator-results {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.calculator-form h2,
.calculator-results h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.calculator-form label,
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.calculator-form input,
.calculator-form select,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.calculator-form input:focus,
.calculator-form select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(91, 156, 168, 0.3);
}

.calc-button {
    width: 100%;
    padding: 12px;
    background-color: var(--gold-color);
    color: #e8f4f8;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.calc-button:hover {
    background-color: var(--gold-dark);
    color: white;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.result-item.highlight {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-bottom: none;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.result-item .label {
    color: var(--text-dark);
}

.result-item .value {
    color: var(--primary-color);
    font-weight: 600;
}

.result-item.highlight .value.net,
.result-item.highlight .value.cost {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.divider {
    height: 2px;
    background-color: #eee;
    margin: 1rem 0;
}

.calculator-info {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.calculator-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.calculator-info ul {
    list-style: none;
}

.calculator-info ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* Jobs Section */
.jobs-section {
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&h=600&fit=crop') center/cover no-repeat;
    position: relative;
}

.jobs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.75) 0%, rgba(168, 213, 221, 0.6) 100%);
    pointer-events: none;
}

.jobs-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.jobs-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.jobs-header p {
    color: #555;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.job-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid var(--gold-color);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.job-header h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    flex: 1;
}

.job-type {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.job-type.full-time {
    background-color: #d4edda;
    color: #155724;
}

.job-type.part-time {
    background-color: #fff3cd;
    color: #e8f4f8;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    font-size: 0.9rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.detail-item i {
    color: var(--primary-color);
}

.job-description {
    padding: 1rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.job-requirements {
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
}

.job-requirements h4 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.job-requirements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.apply-btn {
    display: inline-block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 10px;
    background-color: var(--gold-color);
    color: #e8f4f8;
    text-decoration: none;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.apply-btn:hover {
    background-color: var(--gold-dark);
    color: white;
    transform: scale(1.02);
}

/* Job Application Form */
.job-application {
    padding: 60px 20px;
    scroll-margin-top: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.unsplash.com/photo-1552664222-b2e2b0bb5b3f?w=1200&h=600&fit=crop') center/cover no-repeat;
    position: relative;
}

.job-application::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 213, 221, 0.65) 0%, rgba(248, 249, 250, 0.7) 100%);
    pointer-events: none;
}

.job-application h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.application-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(91, 156, 168, 0.3);
}

.apply-form-btn {
    background-color: var(--gold-color);
    color: #e8f4f8;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.apply-form-btn:hover {
    background-color: var(--gold-dark);
    color: white;
}

/* Blog Section */
.blog-section {
    padding: 60px 20px;
}

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

.blog-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.post-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.post-category {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.post-date,
.post-author {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-post .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-post .read-more:hover {
    color: var(--secondary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.page-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-dots {
    padding: 0.5rem;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
}

.newsletter-btn {
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: #ff5252;
}

/* Studio Description Section */
.studio-description {
    background: var(--bg-light);
    padding: 30px 0 10px 0;
    text-align: center;
}
.studio-description p {
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-content {
        gap: 0.75rem;
        justify-content: space-between;
    }

    .logo {
        gap: 8px;
        font-size: 1rem;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 160px);
    }

    .logo-img {
        height: 52px;
        margin-top: 0;
        margin-right: 0;
    }

    .logo-text {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .nav-social {
        display: flex;
        position: absolute;
        top: 50%;
        right: 84px;
        transform: translateY(-50%);
        gap: 0.7rem;
        font-size: 1.25rem;
        line-height: 1;
    }

    .nav-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        font-size: 1.55rem;
    }

    .nav-content.menu-open .nav-social {
        top: -18px;
        left: 98px;
        right: auto;
        transform: none;
        z-index: 3;
    }

    .nav-content.menu-open .nav-menu {
        display: flex;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.96);
        padding: 1rem 1.1rem;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        z-index: 2;
    }

    .about-logo-wrapper {
        justify-content: flex-start;
        margin-top: 2rem;
        padding-left: 10px;
    }

    .about-logo-large {
        max-width: 220px !important;
        width: 100%;
        margin: 0 !important;
        padding: 12px;
        opacity: 0.92;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

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

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .page-header {
        padding: 60px 20px;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .blog-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

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

    .nav-content {
        gap: 0.5rem;
    }

    .logo {
        gap: 6px;
        max-width: calc(100% - 138px);
    }

    .logo-img {
        height: 42px;
    }

    .logo-text {
        font-size: 0.72rem;
    }

    .nav-social {
        right: 72px;
        gap: 0.55rem;
        font-size: 1.1rem;
    }

    .nav-social a {
        width: 28px;
        height: 28px;
        font-size: 1.45rem;
    }

    .nav-content.menu-open .nav-social {
        top: -16px;
        left: 76px;
    }

    .nav-content.menu-open .nav-menu {
        top: calc(100% + 8px);
        padding: 0.9rem 1rem;
    }

    .about {
        padding: 60px 14px;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-logo-wrapper {
        width: 100%;
        justify-content: flex-start;
        padding-left: 6px;
    }

    .about-logo-large {
        max-width: 180px !important;
        width: 52vw;
        margin: 0 !important;
        padding: 8px;
        border-radius: 14px;
        opacity: 0.9;
    }

    .hamburger span {
        width: 22px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .services h2,
    .contact h2 {
        font-size: 1.8rem;
    }

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

@media (max-width: 800px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
