/* ============================================ */
/* GENERAL STYLES                               */
/* ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================ */
/* HEADER                                       */
/* ============================================ */

header {
    background-color: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.company-name h1 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.company-name .tagline {
    color: #f5a623;
    font-size: 12px;
    display: block;
    font-weight: 300;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav ul li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    padding: 5px 0;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #f5a623;
    border-bottom: 2px solid #f5a623;
}

.phone-display a {
    color: #f5a623;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid #f5a623;
    border-radius: 5px;
    transition: all 0.3s;
}

.phone-display a:hover {
    background-color: #f5a623;
    color: #1a1a1a;
}

.hamburger {
    display: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
}

/* ============================================ */
/* HERO BANNER                                  */
/* ============================================ */

.hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 60px 20px;
    width: 100%;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 3px;
}

.hero-message {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 10px;
}

.hero-intro {
    font-size: 18px;
    color: #f5a623;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* WELCOME SECTION                              */
/* ============================================ */

.welcome-section {
    padding: 40px 0;
    background-color: #f5a623;
    text-align: center;
}

.welcome-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.welcome-content p {
    font-size: 18px;
    color: #1a1a1a;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */

.btn-primary {
    display: inline-block;
    background-color: #f5a623;
    color: #1a1a1a;
    padding: 14px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #d4891b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.4);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #ffffff;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-service {
    display: inline-block;
    background-color: #f5a623;
    color: #1a1a1a;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-service:hover {
    background-color: #d4891b;
}

/* ============================================ */
/* SECTION HEADER                               */
/* ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #666666;
}

/* ============================================ */
/* SERVICES SECTION                             */
/* ============================================ */

.services {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 40px;
    color: #f5a623;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-card > p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-card ul {
    text-align: left;
    padding: 0 15px;
    margin-bottom: 15px;
}

.service-card ul li {
    color: #555555;
    font-size: 13px;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.service-card ul li::before {
    content: "✓";
    color: #f5a623;
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ============================================ */
/* ABOUT PREVIEW                                */
/* ============================================ */

.about-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-preview-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-preview-text {
    flex: 1;
}

.about-preview-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-preview-text p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}

.areas {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.areas span {
    background-color: #f8f8f8;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #1a1a1a;
}

.areas span i {
    color: #f5a623;
    margin-right: 5px;
}

.about-preview-image {
    flex: 0 0 300px;
    text-align: center;
}

.about-preview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ============================================ */
/* GALLERY PREVIEW                              */
/* ============================================ */

.gallery-preview {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.gallery-preview-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.gallery-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-preview-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background-color: #f8f8f8;
    display: block;
}

.gallery-preview-btn {
    text-align: center;
}

/* ============================================ */
/* CONTACT SECTION                              */
/* ============================================ */

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 35px;
    color: #f5a623;
    margin-bottom: 10px;
}

.contact-item h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-item a {
    color: #f5a623;
    font-weight: 600;
    font-size: 16px;
}

.contact-item p {
    color: #555555;
}

.contact-btn {
    text-align: center;
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 30px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f5a623;
}

.footer-col p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-col p i {
    color: #f5a623;
    width: 20px;
}

.footer-col p a {
    color: #cccccc;
    transition: color 0.3s;
}

.footer-col p a:hover {
    color: #f5a623;
}

.tagline-footer {
    color: #f5a623 !important;
    font-style: italic;
    margin-top: 5px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #f5a623;
}

.footer-bottom {
    background-color: #111111;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 14px;
    margin-bottom: 3px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

.footer-bottom a {
    color: #f5a623;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #d4891b;
}

/* ============================================ */
/* MATO MEDIA TZ - WEBSITE DEVELOPER            */
/* ============================================ */

.mato-media {
    color: #f5a623;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
}

.mato-media:hover {
    color: #d4891b;
    text-decoration: underline;
}

/* ============================================ */
/* PAGE HEADER                                  */
/* ============================================ */

.page-header {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #cccccc;
}

/* ============================================ */
/* BIOGRAPHY (ABOUT PAGE)                       */
/* ============================================ */

.bio-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.bio-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bio-text {
    flex: 1;
}

.bio-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.bio-text p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.mission, .vision {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.mission h3, .vision h3 {
    color: #f5a623;
    margin-bottom: 10px;
}

.bio-image {
    flex: 0 0 300px;
    text-align: center;
}

.bio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ============================================ */
/* REGISTRATION SECTION (ABOUT PAGE)            */
/* ============================================ */

.registration-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.registration-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.registration-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.ewura .registration-icon { color: #28a745; }
.brela .registration-icon { color: #007bff; }
.tanesco .registration-icon { color: #f5a623; }

.registration-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.registration-card p {
    color: #666666;
    font-size: 14px;
    margin-bottom: 10px;
}

.registration-meaning {
    color: #555555 !important;
    font-size: 13px !important;
    font-style: italic;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 5px;
}

.status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px;
}

.status.valid {
    background-color: #d4edda;
    color: #155724;
}

.status.active {
    background-color: #cce5ff;
    color: #004085;
}

.status.registered {
    background-color: #fff3cd;
    color: #856404;
}

/* ============================================ */
/* OTHER CERTIFICATES                           */
/* ============================================ */

.other-certificates {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.other-certificates h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.certificates-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.cert-item i {
    font-size: 30px;
    color: #f5a623;
}

.cert-item h4 {
    font-size: 15px;
    color: #1a1a1a;
}

.cert-item p {
    font-size: 13px;
    color: #666666;
}

/* ============================================ */
/* WORK AREAS (ABOUT PAGE)                      */
/* ============================================ */

.work-areas {
    padding: 80px 0;
    background-color: #ffffff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.area-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.area-card i {
    font-size: 40px;
    color: #f5a623;
    margin-bottom: 15px;
}

.area-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.area-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}

.area-tag {
    display: inline-block;
    background-color: #f5a623;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ============================================ */
/* SERVICES SUMMARY (ABOUT PAGE)               */
/* ============================================ */

.services-summary {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.summary-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.summary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.summary-item i {
    font-size: 30px;
    color: #f5a623;
    display: block;
    margin-bottom: 10px;
}

.summary-item span {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
}

/* ============================================ */
/* WHY CHOOSE (ABOUT PAGE)                      */
/* ============================================ */

.why-choose {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.why-card i {
    font-size: 40px;
    color: #f5a623;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666666;
}

/* ============================================ */
/* CTA SECTION                                  */
/* ============================================ */

.cta-section {
    padding: 60px 0;
    background-color: #f5a623;
    text-align: center;
}

.cta-section h2 {
    font-size: 30px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-section .btn-primary {
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-section .btn-primary:hover {
    background-color: #333333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.cta-phone {
    font-size: 24px !important;
    font-weight: 700 !important;
}

.cta-phone a {
    color: #1a1a1a;
}

.cta-phone a:hover {
    color: #333333;
}

/* ============================================ */
/* GALLERY PAGE                                */
/* ============================================ */

.gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    background-color: #f8f8f8;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    display: block;
    background-color: #f8f8f8;
}

/* ============================================ */
/* LIGHTBOX                                     */
/* ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #f5a623;
}

/* ============================================ */
/* CONTACT PAGE                                 */
/* ============================================ */

.contact-info-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-info-icon {
    font-size: 40px;
    color: #f5a623;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    color: #666666;
}

.contact-info-card a {
    color: #f5a623;
    font-weight: 600;
    font-size: 16px;
}

.working-hours {
    margin-top: 10px;
    font-size: 13px !important;
    color: #888888 !important;
}

.contact-note {
    font-size: 13px !important;
    color: #888888 !important;
    margin-top: 5px;
}

/* ============================================ */
/* CONTACT FORM                                 */
/* ============================================ */

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f8f8;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header p {
    color: #666666;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.required {
    color: #ff0000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f5a623;
    outline: none;
}

.error-message {
    color: #ff0000;
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.success-message {
    text-align: center;
    padding: 30px;
    background-color: #d4edda;
    border-radius: 10px;
    margin-top: 20px;
    display: none;
}

.success-message i {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 10px;
}

.success-message h3 {
    color: #155724;
    margin-bottom: 5px;
}

.success-message p {
    color: #155724;
}

/* ============================================ */
/* QUICK CONTACT BUTTONS                        */
/* ============================================ */

.quick-contact {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.quick-contact h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.quick-contact p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.btn-call {
    display: inline-block;
    background-color: #f5a623;
    color: #1a1a1a;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-call:hover {
    background-color: #d4891b;
    transform: translateY(-2px);
}

.btn-call-alt {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-call-alt:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* ============================================ */
/* WORK AREAS REMINDER                          */
/* ============================================ */

.work-areas-reminder {
    padding: 30px 0;
    background-color: #f5a623;
}

.reminder-content {
    text-align: center;
    color: #1a1a1a;
}

.reminder-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.reminder-content p {
    font-size: 16px;
}

/* ============================================ */
/* BACK TO TOP BUTTON                           */
/* ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #f5a623;
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: none;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top:hover {
    background-color: #d4891b;
    transform: translateY(-3px);
}

.back-to-top.show {
    display: block;
}

/* ============================================ */
/* LOGO - CYCLE / MDUARA                        */
/* ============================================ */

.logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f5a623;
    background-color: #ffffff;
    padding: 3px;
}

.about-preview-image img {
    border-radius: 50%;
    border: 3px solid #f5a623;
    width: 200px;
    height: 200px;
    object-fit: cover;
    background-color: #ffffff;
    padding: 5px;
}

.bio-image img {
    border-radius: 50%;
    border: 3px solid #f5a623;
    width: 200px;
    height: 200px;
    object-fit: cover;
    background-color: #ffffff;
    padding: 5px;
}

/* ============================================ */
/* RESPONSIVE - TABLET                          */
/* ============================================ */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-preview-content {
        flex-direction: column;
        text-align: center;
    }

    .bio-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================ */
/* RESPONSIVE - MOBILE                          */
/* ============================================ */

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .logo-area {
        flex: 1;
    }

    .logo {
        height: 40px;
    }

    .company-name h1 {
        font-size: 18px;
    }

    .main-nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1a1a1a;
        padding: 20px;
        gap: 15px;
    }

    .main-nav ul.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .phone-display {
        display: none;
    }

    .hero {
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-message {
        font-size: 18px;
    }

    .hero-intro {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
        object-fit: contain;
    }

    .gallery-preview-item img {
        height: 220px;
        object-fit: contain;
    }

    .registration-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .certificates-list {
        grid-template-columns: 1fr;
    }

    .about-preview-image {
        flex: 0 0 auto;
        width: 200px;
    }

    .bio-image {
        flex: 0 0 auto;
        width: 200px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 30px;
        font-size: 14px;
    }

    .areas {
        justify-content: center;
    }

    .welcome-content h2 {
        font-size: 22px;
    }

    .welcome-content p {
        font-size: 16px;
    }
}

/* ============================================ */
/* RESPONSIVE - VERY SMALL MOBILE               */
/* ============================================ */

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-message {
        font-size: 16px;
    }

    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .form-container {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .hero {
        min-height: 350px;
    }

    .gallery-item img {
        height: 180px;
        object-fit: contain;
    }

    .gallery-preview-item img {
        height: 180px;
        object-fit: contain;
    }
}
