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

:root {
    --primary-color: #af654a;
    --primary-dark: #8c4e36;
    --bg-light: #f2e6e3;
    --bg-white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --font-heading: 'Open Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --radius-md: 12px;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 50px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title {
    margin-bottom: 50px;
    font-size: 2rem;
    color: var(--text-dark);
}

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

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

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    line-height: 1.2;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-text {
    color: var(--text-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

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

.btn-text i {
    margin-left: 8px;
    transition: margin 0.3s;
}

.btn-text:hover i {
    margin-left: 12px;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%; 
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    padding: 10px 0;
}

.nav-logo {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img-link:hover .nav-logo {
    transform: scale(1.05);
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
}

.nav-links > a, 
.dropbtn {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    padding: 25px 0; 
    white-space: nowrap;
}

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

.navbar .btn {
    padding: 10px 25px !important;
    margin-left: 10px !important;
}

.navbar .btn-primary {
    color: white !important;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.dropdown {
    position: relative !important;
    display: inline-block;
}

.dropdown-content {
    display: none !important; 
    position: absolute !important; 
    top: 100%; 
    left: 50% !important; 
    transform: translateX(-50%) !important; 
    background-color: #ffffff !important; 
    min-width: 230px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15); 
    z-index: 9999;
    border-radius: 12px;
    padding: 10px 0;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block !important;
}

.dropdown-content a {
    display: block !important;
    color: #555 !important;
    padding: 12px 20px;
    text-decoration: none;
    text-align: left;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--bg-light) !important;
    color: var(--primary-color) !important;
    padding-left: 25px;
}

.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(to right, var(--bg-light) 60%, #fff 60%);
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-container {
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 90%;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-bottom: 25px;
    display: block;
    margin-top: -10px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.home-about-section {
    display: flex;
    align-items: center;
    gap: 50px;
}

.home-services-section {
    background-color: var(--bg-light);
    padding: 90px 0;
    text-align: center;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.preview-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.preview-img-box {
    height: 300px;
    overflow: hidden;
}

.preview-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.preview-card:hover .preview-img-box img {
    transform: scale(1.05);
}

.preview-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.preview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.preview-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.preview-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.preview-link i {
    margin-left: 8px;
    transition: margin 0.3s;
}

.preview-card:hover .preview-link i {
    margin-left: 12px;
}

.home-blog-section {
    padding: 80px 0;
    background-color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img-box {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.see-all-card {
    background-color: var(--primary-color);
    color: white !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    min-height: 300px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.see-all-card:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

.see-all-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.see-all-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    min-height: 80vh;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    font-size: 1.2rem;
    background: white;
    transition: background 0.3s;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
    background-color: #fafafa;
}

.faq-icon {
    font-size: 1rem;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fafafa;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px 30px;
    max-height: 600px;
}

.faq-link-box {
    display: block;
    background-color: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
    margin-top: 20px;
    text-decoration: none;
}

.faq-link-box:hover {
    background-color: var(--primary-dark);
    color: white;
}

.content-tabs-container {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 900;
}

.content-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.tab-btn {
    padding: 10px 25px;
    border: 2px solid #eee;
    background: white;
    border-radius: 50px;
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
}

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

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

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

.media-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.media-card:hover {
    transform: translateY(-5px);
}

.media-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.media-card:hover .media-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.media-thumb:hover .play-btn {
    background: var(--primary-color);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.media-content {
    padding: 25px;
}

.media-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.media-content h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.media-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

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

.social-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.social-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    transition: transform 0.3s;
}

.social-card:hover .social-icon-box {
    transform: rotate(10deg) scale(1.1);
}

.instagram-style .social-icon-box {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-style .social-icon-box {
    background: black;
}

.linkedin-style .social-icon-box {
    background: #0077b5;
}

.social-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.social-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-handle {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    background: var(--bg-light);
    padding: 6px 15px;
    border-radius: 20px;
}

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

.insta-card {
    display: block;
    background: white;
    border: 1px solid #dbdbdb;
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.insta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.insta-img {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
}

.insta-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

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

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

.insta-caption {
    padding: 15px;
}

.insta-caption p {
    font-size: 0.9rem;
    color: #262626;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insta-embed-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.instagram-media {
    min-width: 300px !important;
    margin: 0 auto !important;
}

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
}

.page-header h1,
.page-header p {
    color: white !important;
}

.page-header.dark-text h1,
.page-header.dark-text p {
    color: #333 !important;
}

.service-detail-box {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 50px;
    align-items: flex-start;
    border-top: 5px solid var(--primary-color);
}

.service-img {
    flex: 0 0 400px;
}

.service-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-text {
    flex: 1;
}

.service-text h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.service-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    color: var(--text-dark);
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 12px;
    color: #444;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.9rem;
}

.footer-wrapper {
    background-color: var(--bg-light) !important;
    background-image: none !important;
}

.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 40px 0 30px;
    margin-top: auto;
    font-size: 0.95rem;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-logo-img {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: padding 0.3s, color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

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

.whatsapp-float {
    position: fixed;
    width: 72px;
    height: 72px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-info-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-card p {
    color: #666;
    font-weight: 500;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s;
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.blog-detail-wrapper {
    max-width: 800px; 
    margin: 0 auto;
}

.blog-main-img {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-text-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.blog-text-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.blog-text-content p {
    margin-bottom: 20px;
}

.blog-text-content strong {
    color: var(--text-dark);
}

.blog-text-content h1,
.blog-text-content h2,
.blog-text-content h3,
.blog-text-content h4 {
    text-align: left; 
}

.blog-text-content p {
    text-align: justify; 
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
}

.blog-list {
    list-style: none;
    margin-bottom: 30px;
    margin-left: 10px;
}

.blog-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.blog-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

.author-box {
    display: flex;
    align-items: center;
    background-color: #fafafa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 50px;
    gap: 20px;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.blog-detail-box {
    background: white; 
    border-radius: 12px; 
    padding: 50px; 
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05); 
    border-top: 5px solid var(--primary-color); 
    margin-bottom: 30px; 
}

@media (max-width: 600px) {
    .blog-detail-box {
        padding: 25px;
    }
}

@media (max-width: 900px) {
    .container {
        width: 90%;
    }

    .section {
        padding: 50px 0;
    }

    .hero-section {
        background: var(--bg-light);
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hamburger {
        display: block;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: 0;
        height: calc(100vh - 80px);
        background: #ffffff;
        width: 75% !important;
        max-width: 280px !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 0;
        gap: 0 !important;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        border-left: 1px solid #eee;
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .nav-links > a,
    .dropbtn {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 25px;
        font-size: 1rem;
        border-bottom: 1px solid #f5f5f5;
        color: #333;
        margin: 0;
        display: block;
    }

    .nav-links > a:hover {
        background-color: var(--bg-light);
        color: var(--primary-color);
        padding-left: 30px;
    }

    .navbar .btn {
        margin: 20px 25px !important;
        width: auto !important;
        display: inline-block;
        text-align: center;
    }

    .dropdown {
        width: 100%;
        display: block;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none;
        background: transparent;
    }

    .dropdown .dropbtn {
        width: 100%;
        padding: 15px 25px;
        border-bottom: 1px solid #f5f5f5;
    }

    .dropdown-content {
        display: none; 
        position: static !important; 
        box-shadow: none;
        border: none;
        background-color: #f9f9f9 !important;
        width: 100%;
        padding-left: 20px;
        left: auto !important; 
        transform: none !important;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .preview-grid,
    .blog-grid,
    .contact-info-wrapper,
    .service-detail-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 30px;
    }

    .service-img {
        width: 100%;
    }

    .footer {
        padding: 30px 0 20px; 
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .footer-logo-img {
        width: 140px; 
        margin-bottom: 15px;
    }

    .footer-desc {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 8px; 
        display: inline-block; 
        margin-right: 10px;
    }
    
    .footer-socials {
        justify-content: center; 
        margin-top: 10px;
    }

    .home-about-section {
        flex-direction: column !important;
        text-align: center;
        padding: 0 20px;
    }
    
    .home-about-section > div {
        width: 100%;
    }
    
    .home-about-section img {
        max-width: 280px;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 768px) {
    .content-tabs {
        flex-wrap: wrap;
    }

    .media-thumb {
        height: 180px;
    }
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 1.7rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 32px;
    }
}

.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}